2022-11-27 22:05:42 +01:00
|
|
|
[package]
|
|
|
|
name = "satrs-mib"
|
2023-08-28 23:23:52 +02:00
|
|
|
version = "0.1.0-alpha.0"
|
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."""
|
2023-08-28 23:30:22 +02:00
|
|
|
homepage = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
|
|
|
|
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-core]
|
2023-08-28 23:23:52 +02:00
|
|
|
version = "0.1.0-alpha.0"
|
|
|
|
# path = "../satrs-core"
|
2022-11-27 22:05:42 +01:00
|
|
|
|
2022-11-27 22:13:15 +01:00
|
|
|
[dependencies.satrs-mib-codegen]
|
|
|
|
path = "codegen"
|
2023-08-28 23:23:52 +02:00
|
|
|
version = "0.1.0-alpha.0"
|
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"]
|