[package]
edition = "2021"
rust-version = "1.85.1"
name = "esh"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable SHell - a Rust library for building interactive, command-driven CLI applications."
readme = "README.md"
keywords = [
"shell",
"cli",
"vfs",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lambdanature/esh"
[features]
tracing-log = ["dep:tracing-log"]
[lib]
name = "esh"
path = "src/lib.rs"
[[bin]]
name = "esh"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4.5.58"
features = [
"derive",
"string",
]
[dependencies.os_str_bytes]
version = "7.1.1"
default-features = false
[dependencies.test-log]
version = "0.2.19"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-log]
version = "0.2.0"
optional = true
[dependencies.tracing-panic]
version = "0.1.2"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]
[dependencies.vfs-kit]
version = "0.2.0"
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.25.0"
[lints.clippy]
all = "deny"
cast_possible_truncation = "deny"
enum_glob_use = "deny"
expect_used = "deny"
indexing_slicing = "deny"
mod_module_files = "deny"
multiple_crate_versions = "deny"
nursery = "deny"
panic = "deny"
pedantic = "deny"
rest_pat_in_fully_bound_structs = "deny"
string_add = "deny"
string_add_assign = "deny"
todo = "deny"
unwrap_used = "deny"