-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (62 loc) · 1.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "sotc"
version = "0.1.0"
edition = "2021"
[dependencies]
# Connectivity
tokio = { version = "1.0", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
tower-http = { version = "0.6", features = ["auth", "validate-request"] }
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"json",
"stream",
] }
warp = "0.3"
async-trait = "0.1"
futures = "0.3"
# Logging, Tracing and Metrics
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
prometheus = "0.13"
# Error Handling
thiserror = "2"
anyhow = "1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
humantime-serde = "1"
bincode = "1"
# CLI
argh = "0.1"
# SQL and ORMs
sea-orm = { version = "1", features = [
"macros",
"sqlx-postgres",
"runtime-tokio-rustls",
] }
sea-query = "0.32"
sqlx = { version = "0.8", features = [ "sqlite", "runtime-tokio" ] }
# Vectors, Arrays, ML
ndarray = "0.16"
nalgebra = "0.33"
half = "2"
# Misc: (Non Cryptographic) Hashing, Allocators, UUIDs, Date and Time, Image Processing
rustc-hash = "2"
sha1_smol = "1"
tikv-jemallocator = "0.6"
uuid = { version = "1", features = [
"v4",
"fast-rng",
"macro-diagnostics",
] }
chrono = { version = "0.4", features = ["serde"] }
derivative = "2"
image = { version = "0.25", features = ["jpeg", "png", "tiff"] }
[dev-dependencies]
rstest = "0.23"
criterion = { version = "0.5", features = ["html_reports"] }
approx = "0.5"
[[bench]]
name = "benchmark"
harness = false