40 lines
813 B
TOML
40 lines
813 B
TOML
[package]
|
|
name = "satrs-example"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
|
default-run = "satrs-example"
|
|
homepage = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
|
|
repository = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
|
|
|
|
[dependencies]
|
|
fern = "0.6"
|
|
chrono = "0.4"
|
|
log = "0.4"
|
|
crossbeam-channel = "0.5"
|
|
delegate = "0.10"
|
|
zerocopy = "0.6"
|
|
csv = "1"
|
|
num_enum = "0.7"
|
|
thiserror = "1"
|
|
lazy_static = "1"
|
|
strum = { version = "0.26", features = ["derive"] }
|
|
derive-new = "0.5"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[dependencies.satrs]
|
|
path = "../satrs"
|
|
features = ["test_util"]
|
|
|
|
[dependencies.satrs-mib]
|
|
version = "0.1.1"
|
|
path = "../satrs-mib"
|
|
|
|
[features]
|
|
dyn_tmtc = []
|
|
default = ["dyn_tmtc"]
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.11"
|