22 lines
609 B
TOML
22 lines
609 B
TOML
[package]
|
|
name = "zeavis-ml-service"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
axum = { version = "0.7", features = ["multipart"] }
|
|
image = "0.25"
|
|
ndarray = "0.17"
|
|
ort = { version = "2.0.0-rc.10", features = ["download-binaries", "ndarray"] }
|
|
prometheus = { version = "0.14.0", features = ["process"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "net"] }
|
|
tower = "0.5"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
temp-env = "0.3"
|