2026-05-26 10:08:23 +02:00
|
|
|
[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"
|
|
|
|
|
|
2026-05-26 10:45:18 +02:00
|
|
|
[[bin]]
|
|
|
|
|
name = "colibri-runtime-inventory"
|
|
|
|
|
path = "src/bin/runtime_inventory.rs"
|
|
|
|
|
|
2026-05-26 10:08:23 +02:00
|
|
|
[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"] }
|