2025-05-08 18:52:16 -04:00
|
|
|
[package]
|
|
|
|
name = "satellite"
|
2025-05-08 20:39:54 -04:00
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-05-08 20:39:54 -04:00
|
|
|
[[bin]]
|
|
|
|
name = "satellite"
|
|
|
|
path = "src/server.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "base_station"
|
|
|
|
path = "src/client.rs"
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-05-08 18:52:16 -04:00
|
|
|
[dependencies]
|
2025-05-08 20:39:54 -04:00
|
|
|
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"
|