-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 1.16 KB
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
[package]
name = "turingflow"
version = "0.1.0"
edition = "2021"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde_json = "1.0"
base64 = "0.22"
image = "0.24"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
axum = { version = "0.8", features = ["json", "macros"] }
tokio = { version = "1.44", features = ["macros", "rt-multi-thread"] }
rustls = { version = "0.23", features = ["ring"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
time = { version = "0.3", features = ["formatting", "parsing"] }
tokio-rustls = "0.26"
rustls-pemfile = "2.2"
hyper = { version = "1.7", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1", features = ["server", "http1", "http2", "tokio", "service"] }
x509-parser = "0.16"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "json"] }
rusqlite = { version = "0.32", features = ["bundled"] }
chromadb = { version = "2.3.0", default-features = false, features = ["rustls-tls"] }
flate2 = "1.1"
[dev-dependencies]
rcgen = "0.13"
tempfile = "3.13"