-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 823 Bytes
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
[package]
name = "semcache"
version = "0.1.0"
edition = "2024"
default-run = "semcache"
[dependencies]
axum = "0.8"
reqwest = {version = "0.12.15", features = ["json", "gzip"]}
serde = {version = "1.0.219", features = ["derive"]}
serde_json = "1.0.140"
tokio = {version = "1.0.0", features = ["full"]}
url = "2.5.4"
thiserror = "2.0.12"
fastembed = "4.9"
faiss = "0.12.1"
askama = "0.14.0"
prometheus = "0.14.0"
chrono = { version = "0.4", features = ["serde"] }
tower-http = { version = "0.5.0", features = ["fs"] }
mockall = "0.13.1"
lru = "0.14.0"
tracing = "0.1.41"
tracing-subscriber = {version = "0.3.19", features = ["env-filter"]}
ordered-float = "5.0.0"
async-trait = "0.1.88"
config = "0.15.11"
jsonpath-rust = "1.0.2"
testcontainers = "0.24.0"
[[bin]]
name = "smoke_test"
path = "tests/manual/smoke_test.rs"