Mantis/mantis/Cargo.toml
ParrotXray 22d0384c69
Feat/improve frontend (#16)
* wip

* wip

* wip

* redesign: slate-navy + sky accent color system and layout refresh
2026-05-25 20:01:00 +08:00

60 lines
1.6 KiB
TOML

[package]
name = "mantis"
version = "0.1.0"
edition = "2024"
[dependencies]
common = { path = "../common", features = ["user"] }
macros = { path = "../macros" }
axum = { version = "0.8", features = ["ws", "macros"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["cors"] }
aya = { workspace = true }
aya-log = { workspace = true }
network-types = { workspace = true }
crossbeam = "0.8.4"
futures-util = "0.3.30"
libc = { workspace = true }
mime_guess = "2.0.5"
parking_lot = "0.12.5"
rust-embed = "8.7.2"
serde = { workspace = true }
serde_json = "1.0.143"
sysinfo = "0.39.2"
thiserror = "2.0.3"
tokio = { version = "1.40.0", features = ["full", "macros"] }
toml = "1.0.3"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
url = "2.5.7"
xsk-rs = { workspace = true }
maxminddb = "0.28.1"
lru = "0.16.2"
futures = "0.3.31"
tract-onnx = "0.22.1"
chrono = "0.4"
rusqlite = { version = "0.31", features = ["bundled-sqlcipher-vendored-openssl"] }
argon2 = "0.5"
jsonwebtoken = "9"
uuid = { version = "1", features = ["v4"] }
ort-tract = { version = "0.3.0+0.22", optional = true }
ort = { version = "=2.0.0-rc.12", default-features = false, features = ["std", "ndarray"] }
ndarray = "0.17"
[features]
default = ["native-ort-backend"]
tract-backend = ["dep:ort-tract", "ort/alternative-backend"]
native-ort-backend = ["ort/load-dynamic", "ort/api-18"]
[build-dependencies]
cargo_metadata = { workspace = true }
cc = "1"
dotenvy = "0.15.7"
[[bin]]
name = "mantis"
path = "src/main.rs"