remove_background/Cargo.toml

17 lines
431 B
TOML
Raw Normal View History

2026-01-21 21:14:29 +00:00
[package]
edition = "2024"
name = "remove_background"
version = "0.1.0"
[dependencies]
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-22 20:09:13 +00:00
ort = "=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-22 20:30:41 +00:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }