[package]
edition = "2024"
rust-version = "1.88"
name = "axioval-cli"
version = "0.1.5"
authors = ["Axioval contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line runner for normalized Axioval packages"
readme = "README.md"
license = "AGPL-3.0-or-later"
repository = "https://github.com/axioval/engine"
resolver = "2"
[[bin]]
name = "axioval"
path = "src/main.rs"
doc = false
[dependencies.axioval]
version = "0.1.5"
[dependencies.clap]
version = "4.5.46"
features = ["derive"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.143"
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"