[package]
edition = "2021"
rust-version = "1.78.0"
name = "sensus"
version = "0.5.0"
authors = ["kako-jun"]
build = false
exclude = [
".github/",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for sensus: simulate sensory perception (color blindness, low vision, hearing loss) on images"
homepage = "https://github.com/kako-jun/sensus"
documentation = "https://docs.rs/sensus"
readme = "README.md"
keywords = [
"accessibility",
"image",
"color-vision",
"vision",
"cli",
]
categories = [
"command-line-utilities",
"graphics",
"multimedia",
"accessibility",
]
license = "MIT"
repository = "https://github.com/kako-jun/sensus"
[[bin]]
name = "sensus"
path = "src/main.rs"
[[test]]
name = "audio_integration"
path = "tests/audio_integration.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "depth_compose_integration"
path = "tests/depth_compose_integration.rs"
[[test]]
name = "mpo_integration"
path = "tests/mpo_integration.rs"
[[test]]
name = "pipe_integration"
path = "tests/pipe_integration.rs"
[[test]]
name = "portrait_integration"
path = "tests/portrait_integration.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hound]
version = "3"
[dependencies.image]
version = "0.25"
default-features = true
[dependencies.sensus-core]
version = "0.5.0"
[dependencies.thiserror]
version = "1"
[dev-dependencies.hound]
version = "3"
[dev-dependencies.image]
version = "0.25"
default-features = true
[dev-dependencies.tempfile]
version = "3"