[package]
edition = "2024"
rust-version = "1.92"
name = "yscv-cli"
version = "0.1.2"
authors = ["yscv contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for inference, benchmarking, and evaluation"
readme = false
keywords = [
"tensor",
"simd",
"deep-learning",
"image-processing",
"neon",
]
categories = [
"computer-vision",
"science",
"algorithms",
"multimedia",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nickstienz/yscv"
resolver = "2"
[features]
default = []
native-camera = ["yscv-video/native-camera"]
[lib]
name = "yscv_cli"
path = "src/lib.rs"
[[bin]]
name = "yscv-cli"
path = "src/main.rs"
[[bench]]
name = "cli_runtime_ops"
path = "benches/cli_runtime_ops.rs"
harness = false
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2"
[dependencies.yscv-detect]
version = "0.1"
[dependencies.yscv-eval]
version = "0.1"
[dependencies.yscv-recognize]
version = "0.1"
[dependencies.yscv-tensor]
version = "0.1"
[dependencies.yscv-track]
version = "0.1"
[dependencies.yscv-video]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[lints.clippy]
if_same_then_else = "allow"
large_enum_variant = "allow"
needless_range_loop = "allow"
new_without_default = "allow"
should_implement_trait = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
[lints.rust]
unsafe_code = "deny"