[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-argument"
version = "0.3.6"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Argument and state validation helpers for Rust applications"
homepage = "https://github.com/qubit-ltd/rs-argument"
documentation = "https://docs.rs/qubit-argument"
readme = "README.md"
keywords = [
"argument",
"validation",
"utility",
"qubit",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-argument"
[lib]
name = "qubit_argument"
path = "src/lib.rs"
test = true
doctest = true
[[test]]
name = "argument_tests"
path = "tests/argument_tests.rs"
[dependencies.regex]
version = "1.12"