-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 904 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "lrzcc-test"
version = "0.4.0"
edition = "2021"
license = "MIT"
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
name = "lrzcc_test"
path = "src/lib.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies]
lrzcc = { version = "1.6", path = "../lib" }
lrzcc-api = { version = "0.6", path = "../api" }
lrzcc-wire = { version = "1.5", path = "../wire" }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
serde_json = "1"
reqwest = { version = "0.12", features = ["json", "blocking"] }
uuid = { version = "1.12", features = ["v4", "serde"] }
once_cell = "1"
wiremock = "0.6"
rand = "0.8"
chrono = "0.4"
anyhow = "1.0"
[dependencies.sqlx]
version = "0.8"
default-features = false
features = [
"runtime-tokio",
"tls-rustls",
"macros",
"mysql",
"uuid",
"chrono",
"migrate",
]
[dev-dependencies]
cargo-husky = { workspace = true }