[package]
edition = "2024"
name = "rcal"
version = "1.0.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OMS Critical Abstraction Layer (CAL) implementation for Rust"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/tclarke/rcal"
[lib]
name = "rcal"
path = "src/lib.rs"
[[bin]]
name = "zmq_peer_sender"
path = "src/bin/zmq_peer_sender.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "custom_tokio"
path = "examples/custom_tokio.rs"
[[example]]
name = "system_status"
path = "examples/system_status.rs"
[[test]]
name = "zmq_asb_system"
path = "tests/zmq_asb_system.rs"
harness = true
[[test]]
name = "zmq_qos"
path = "tests/zmq_qos.rs"
harness = true
[[test]]
name = "zmq_radio_dish"
path = "tests/zmq_radio_dish.rs"
harness = true
[dependencies.chrono]
version = "0.4.45"
features = ["serde"]
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.mac_address]
version = "1.1.8"
features = ["serde"]
[dependencies.omq-tokio]
version = "0.21.1"
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.rcal_macros]
version = "1.0.0"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.slog]
version = "2.8.2"
[dependencies.slog-async]
version = "2.8.0"
[dependencies.slog-json]
version = "2.6.1"
[dependencies.slog-term]
version = "2.9.2"
[dependencies.tokio]
version = "1.53.1"
features = ["full"]
[dependencies.toml]
version = "1.1.4"
[dependencies.uuid]
version = "1.24.0"
features = [
"v1",
"v3",
"v4",
"slog",
"serde",
"rng",
]
[dev-dependencies.serde_json]
version = "1.0.151"
[build-dependencies.glob]
version = "0.3.4"
[build-dependencies.quick-xml]
version = "0.37"