sat-rs/satrs-example/Cargo.toml

40 lines
813 B
TOML
Raw Permalink Normal View History

2022-08-18 01:32:02 +02:00
[package]
2022-11-20 19:29:50 +01:00
name = "satrs-example"
2024-02-21 11:34:35 +01:00
version = "0.1.1"
2022-08-18 01:32:02 +02:00
edition = "2021"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
2022-11-20 20:42:29 +01:00
default-run = "satrs-example"
2023-08-28 19:11:19 +02:00
homepage = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
repository = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
2022-08-18 01:32:02 +02:00
2022-09-08 00:30:01 +02:00
[dependencies]
2023-02-15 22:30:32 +01:00
fern = "0.6"
chrono = "0.4"
log = "0.4"
2022-09-08 00:30:01 +02:00
crossbeam-channel = "0.5"
2023-07-03 00:42:20 +02:00
delegate = "0.10"
2022-10-22 15:31:50 +02:00
zerocopy = "0.6"
2022-11-27 22:05:42 +01:00
csv = "1"
2023-08-28 22:57:02 +02:00
num_enum = "0.7"
2023-07-08 13:20:08 +02:00
thiserror = "1"
lazy_static = "1"
strum = { version = "0.26", features = ["derive"] }
derive-new = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2022-09-08 00:30:01 +02:00
[dependencies.satrs]
2024-02-23 14:19:30 +01:00
path = "../satrs"
features = ["test_util"]
2022-11-27 22:05:42 +01:00
[dependencies.satrs-mib]
2024-02-21 11:22:16 +01:00
version = "0.1.1"
path = "../satrs-mib"
[features]
dyn_tmtc = []
default = ["dyn_tmtc"]
[dev-dependencies]
env_logger = "0.11"