vastlint-cli 0.3.3

Command-line VAST XML validator — checks tags against IAB VAST 2.0 through 4.3
[package]
name = "vastlint-cli"
version = "0.3.3"
edition = "2021"
rust-version = "1.86"
authors = ["Aleks <aleks@vastlint.org>"]
description = "Command-line VAST XML validator — checks tags against IAB VAST 2.0 through 4.3"
license = "Apache-2.0"
repository = "https://github.com/aleksUIX/vastlint"
homepage = "https://github.com/aleksUIX/vastlint"
readme = "../../README.md"
keywords = ["vast", "xml", "validator", "adtech", "iab"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "vastlint"
path = "src/main.rs"

[dependencies]
vastlint-core = { path = "../vastlint-core", version = "0.3.3" }
# High-throughput allocator — eliminates system-allocator contention when
# validating many large VAST documents concurrently (see vastlint-core docs).
mimalloc = { version = "0.1", default-features = false }
# Argument parsing
clap = { version = "4", features = ["derive"] }
# Coloured terminal output
anstream = "0.6"
anstyle = "1"
# Config file parsing
toml = { version = "0.8", default-features = false, features = ["parse"] }
# Opt-in telemetry ping (rustls, no OpenSSL dependency)
ureq = { version = "2", default-features = false, features = ["tls"] }