colibri/Cargo.toml

23 lines
708 B
TOML
Raw Normal View History

[package]
name = "colibri"
version = "0.0.1"
edition = "2021"
description = "Clawdie Colibri control plane — cross-platform (FreeBSD/Linux) Rust core"
license = "AGPL-3.0-only"
[[bin]]
name = "colibri-probe"
path = "src/main.rs"
[[bin]]
name = "colibri-runtime-inventory"
path = "src/bin/runtime_inventory.rs"
[dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
# rustls (not OpenSSL) keeps the TLS stack pure-Rust and FreeBSD-portable.
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }