[package] name = "anime-seg-rs" version = "0.3.0" authors = [] edition = "2021" description = "Trying to implement anime-seg in Rust" repository = "https://github.com/nusu-github/anime-seg-rs" license = "Apache-2.0" readme = "README.md" categories = ["command-line-utilities"] keywords = ["anime", "segmentation", "image-segmentation", "deep-learning", "pytorch"] [features] default = [] cuda = ["ort/cuda"] [dependencies] anyhow = "^1.0.88" clap = { version = "^4.5.17", features = ["derive"] } image = "^0.25.2" indicatif = "^0.17.8" ndarray = "^0.16.1" nshare = { version = "^0.10.0", default-features = false, features = ["image", "ndarray"] } num-traits = "^0.2.19" ort = "2.0.0-rc.6" parking_lot = { version = "^0.12.3", features = ["hardware-lock-elision"] } rayon = "^1.10.0" walkdir = "^2.5.0" [profile.release] lto = "thin" codegen-units = 1 panic = "abort"