[package]
edition = "2021"
name = "whyno-cli"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cli for whyno"
readme = "readme.md"
keywords = [
"linux",
"permissions",
"debugging",
"acl",
"diagnostics",
]
categories = [
"command-line-utilities",
"os::linux-apis",
"development-tools::debugging",
]
license = "MIT"
[[bin]]
name = "whyno"
path = "src/main.rs"
[[test]]
name = "check_mode"
path = "tests/check_mode.rs"
[[test]]
name = "cli_behavior"
path = "tests/cli_behavior.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.29"
features = [
"fs",
"process",
"user",
]
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.whyno-core]
version = "0.1.1"
[dependencies.whyno-gather]
version = "0.1.1"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.whyno-core]
version = "0.1.1"
features = ["test-helpers"]