[package]
edition = "2021"
rust-version = "1.70.0"
name = "varta-client"
version = "0.2.0"
authors = ["Alexander Ramirez"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Varta agent API — emits VLP frames over a Unix Domain Socket."
documentation = "https://docs.rs/varta-client"
readme = "README.md"
keywords = [
"heartbeat",
"healthcheck",
"monitoring",
"distributed-systems",
"zero-dependency",
]
categories = [
"network-programming",
"embedded",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aramirez087/Varta"
[features]
accept-degraded-entropy = [
"panic-handler",
"secure-udp",
]
default = []
panic-handler = []
safety-profile-strict = []
secure-udp = [
"udp",
"varta-vlp/crypto",
"varta-vlp/std",
]
test-hooks = []
udp = []
[lib]
name = "varta_client"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "secure_udp"
path = "examples/secure_udp.rs"
required-features = ["secure-udp"]
[[example]]
name = "udp"
path = "examples/udp.rs"
required-features = ["udp"]
[[example]]
name = "with_panic_handler"
path = "examples/with_panic_handler.rs"
required-features = ["panic-handler"]
[[example]]
name = "with_payload"
path = "examples/with_payload.rs"
[[test]]
name = "acceptance"
path = "tests/acceptance.rs"
[[test]]
name = "classifier"
path = "tests/classifier.rs"
[[test]]
name = "panic_feature"
path = "tests/panic_feature.rs"
[[test]]
name = "zero_alloc"
path = "tests/zero_alloc.rs"
[dependencies.varta-vlp]
version = "0.2.0"
[lints.rust]
unsafe_code = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(kani)",
"cfg(fuzzing)",
]