[package]
edition = "2024"
name = "noshell"
version = "0.3.0"
authors = ["Julien Peeters <inthehack@mountainhacks.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "noshell, a no_std argument parser and a shell for constrained systems."
homepage = "https://github.com/inthehack/noshell"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/inthehack/noshell"
resolver = "2"
[features]
default = []
defmt = [
"dep:defmt",
"noshell-parser?/defmt",
]
events = []
parser = ["dep:noshell-parser"]
[lib]
name = "noshell"
path = "src/lib.rs"
[[test]]
name = "derived"
path = "tests/derived.rs"
[dependencies.defmt]
version = "0.3.10"
optional = true
[dependencies.futures]
version = "0.3.31"
default-features = false
[dependencies.heapless]
version = "0.9.2"
[dependencies.nom]
version = "8.0.0"
default-features = false
[dependencies.noshell-macros]
version = "0.3.0"
[dependencies.noshell-parser]
version = "0.3.0"
optional = true
[dependencies.noterm]
version = "0.1.1"
[dependencies.thiserror]
version = "2.0.11"
default-features = false
[dev-dependencies.insta]
version = "1.46.0"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.speculoos]
version = "0.13.0"
[dev-dependencies.tokio]
version = "1.49.0"
features = ["full"]