[package]
edition = "2024"
name = "wrapc"
version = "0.1.6"
authors = ["Ivan Chetchasov <vi.is.chapmann@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-fuss, type-safe parser for rustc arguments, designed for RUSTC_WRAPPER tools"
documentation = "https://vi-is-ramen.github.io/book/en/wrapc"
readme = "README.md"
keywords = [
"rustc",
"wrapper",
"parser",
"build",
"tool",
]
categories = [
"development-tools",
"command-line-interface",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vi-is-ramen/wrapc"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "wrapc"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.thiserror]
version = "2.0"