-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 1.12 KB
/
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
46
47
48
49
50
[package]
name = "content-search-service"
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
[lib]
name = "lib"
path = "src/lib/lib.rs"
[[bin]]
name = "bin"
path = "src/main.rs"
[[test]]
name = "unitary_tests"
path = "tests/unitary/mod.rs"
[[test]]
name = "integration_tests"
path = "tests/integration/mod.rs"
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-ld"
[dependencies]
tokio = { version = "1.39.0", features = ["full", "test-util", "time"] }
axum = "0.7.5"
axum-extra = { version = "0.9.3", features = ["json-deserializer"] }
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres"] }
derive_builder = "0.20.0"
log = "0.4.22"
env_logger = "0.11.5"
anyhow = "1.0.86"
serde = { version = "1.0.208", features = ["derive"] }
tantivy = "0.22.0"
futures = "0.3.30"
dashmap = "6.0.1"
config = { version = "0.14.0", features = ["toml"] }
toml = "0.8.19"
[dev-dependencies]
reqwest = { version = "0.12.5", features = ["json"] }
rstest = "0.22.0"
rstest_reuse = "0.7.0"
rand = "0.8.5"
mockall = "0.13.0"
testcontainers = { version = "0.21.1", features = ["blocking"] }
ctor = "0.2.8"
serde_json = "1.0.127"