sat-rs/satrs-mib/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

2022-11-27 22:05:42 +01:00
[package]
name = "satrs-mib"
2024-04-17 10:01:46 +02:00
version = "0.1.2"
2022-11-27 22:05:42 +01:00
edition = "2021"
2023-08-28 23:30:22 +02:00
rust-version = "1.61"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
description = """
2023-08-28 23:32:59 +02:00
Helper crate of the sat-rs framework to build a mission information base (MIB) from the
On-Board Software (OBSW) code directly."""
2024-02-12 17:29:48 +01:00
homepage = "https://absatsw.irs.uni-stuttgart.de/projects/sat-rs/"
2023-08-28 23:30:22 +02:00
repository = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
license = "Apache-2.0"
keywords = ["no-std", "space", "aerospace"]
categories = ["aerospace", "aerospace::space-protocols", "no-std", "hardware-support", "embedded"]
2022-11-27 22:05:42 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde-hex = "0.1.0"
2022-11-27 22:30:38 +01:00
[dependencies.csv]
version = "1"
optional = true
2022-11-27 22:05:42 +01:00
[dependencies.satrs-shared]
2024-04-17 16:17:30 +02:00
version = ">=0.1.3, <0.2"
features = ["serde"]
2022-11-27 22:05:42 +01:00
2022-11-27 22:13:15 +01:00
[dependencies.satrs-mib-codegen]
path = "codegen"
2024-04-17 16:17:30 +02:00
version = "0.1.2"
2022-11-27 22:13:15 +01:00
2022-11-27 22:05:42 +01:00
[dependencies.serde]
2023-07-03 00:42:20 +02:00
version = "1"
2022-11-27 22:05:42 +01:00
default-features = false
2022-11-27 22:30:38 +01:00
[features]
default = ["std"]
std = ["csv", "serde/std"]