remove_background/Cargo.toml

23 lines
523 B
TOML
Raw Normal View History

2026-01-21 21:14:29 +00:00
[package]
edition = "2024"
name = "remove_background"
version = "0.1.0"
2026-04-23 16:13:40 +00:00
[features]
default = []
cuda = ["ort/cuda"]
2026-01-21 21:14:29 +00:00
[dependencies]
2026-04-23 12:51:16 +00:00
anyhow = "1"
2026-04-22 20:09:13 +00:00
clap = { version = "4", features = ["derive"] }
hex = "0.4"
2026-01-21 21:14:29 +00:00
image = "0.25"
2026-01-21 23:25:11 +00:00
ndarray = "0.17"
2026-04-23 16:13:40 +00:00
ort = { version = "=2.0.0-rc.12" }
2026-01-21 21:14:29 +00:00
reqwest = { version = "0.13", features = ["blocking"] }
2026-04-22 20:09:13 +00:00
sha2 = "0.11"
2026-01-21 21:14:29 +00:00
show-image = { version = "0.14", features = ["image"] }
2026-04-23 12:51:16 +00:00
thiserror = "2"
2026-04-22 20:30:41 +00:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }