ops-sat-rs/Cargo.toml

44 lines
894 B
TOML
Raw Normal View History

2024-04-08 16:47:31 +02:00
[package]
2024-04-08 16:48:45 +02:00
name = "ops-sat-rs"
2024-04-24 20:43:23 +02:00
version = "0.1.0"
2024-04-08 16:47:31 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fern = "0.6"
2024-04-19 17:40:38 +02:00
toml = "0.8"
2024-04-08 17:29:18 +02:00
chrono = "0.4"
2024-04-08 16:47:31 +02:00
log = "0.4"
2024-04-08 17:29:18 +02:00
lazy_static = "1"
2024-04-16 15:03:10 +02:00
humantime = "2"
2024-04-08 17:29:18 +02:00
strum = { version = "0.26", features = ["derive"] }
2024-04-09 11:18:54 +02:00
thiserror = "1"
derive-new = "0.6"
num_enum = "0.7"
serde = "1"
serde_json = "1"
2024-04-13 15:16:53 +02:00
mio = "0.8"
homedir = "0.2"
2024-04-19 17:40:38 +02:00
socket2 = "0.5"
2024-04-08 16:47:31 +02:00
[dependencies.satrs]
version = "0.2.0-rc.5"
2024-04-17 16:29:59 +02:00
# git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git"
# branch = "main"
2024-04-09 13:54:34 +02:00
features = ["test_util"]
2024-04-09 11:18:54 +02:00
[dependencies.satrs-mib]
2024-04-17 16:40:13 +02:00
version = ">=0.1.2, <0.2"
2024-04-10 14:59:34 +02:00
[dev-dependencies]
env_logger = "0.11"
2024-04-16 09:59:31 +02:00
# I don't think we need insane performance. If anything, a small binary is easier to upload
# to the satellite.
[profile.release]
strip = true
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1