satellite_comms/Cargo.toml

28 lines
616 B
TOML
Raw Normal View History

2025-05-08 18:52:16 -04:00
[package]
name = "satellite"
version = "0.1.0"
2025-05-08 18:52:16 -04:00
edition = "2021"
description = "Rust Challenge"
repository = "/myrddin/satellite"
authors = ["CyberMages LLC <Software@CyberMagesLLC.com>", "Jason Travis Smith <Myrddin@CyberMages.tech>"]
readme = "README.md"
license-file = "LICENSE.md"
[[bin]]
name = "satellite"
path = "src/server.rs"
[[bin]]
name = "base_station"
path = "src/client.rs"
2025-05-08 18:52:16 -04:00
[dependencies]
clap = { version = "4.5.32", features = ["derive"] }
chrono = "0.4.40"
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread", "io-std", "fs", "signal", "sync"] }
console-subscriber = "0.4.1"