[package]
edition = "2021"
name = "kmdparse"
version = "0.0.3"
authors = [
"Vlad Poletaev <poletaev.vladislav@gmail.com>",
"Sunip K. Mukherjee <sunipkmukherjee@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parsing user's commands into arbitrary Rust types, in no-std environments and with support for context-sensitive parsing and completion."
documentation = "https://docs.rs/kmdparse/"
readme = "README.md"
categories = [
"parser-implementations",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sunipkm/kmdparse"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
std = []
[lib]
name = "kmdparse"
path = "src/lib.rs"
[[example]]
name = "arithmetic"
path = "examples/arithmetic.rs"
[[example]]
name = "smallvec"
path = "examples/smallvec.rs"
[dependencies.heapless]
version = "0.9"
[dependencies.kmdparse-derive]
version = "=0.0.3"
[dev-dependencies.rustyline]
version = "9.1.0"
[dev-dependencies.smallvec]
version = "1.8"
[dev-dependencies.tempdir]
version = "0.3"