sat-rs/satrs-mib/Cargo.toml
Robin Mueller eef6f42d3b
Some checks are pending
Rust/sat-rs/pipeline/head Build queued...
prepare MIB release v0.1.0
2024-02-12 16:23:00 +01:00

40 lines
1023 B
TOML

[package]
name = "satrs-mib"
version = "0.1.0"
edition = "2021"
rust-version = "1.61"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
description = """
Helper crate of the sat-rs framework to build a mission information base (MIB) from the
On-Board Software (OBSW) code directly."""
homepage = "https://absatsw.uni-stuttgart.de/projects/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"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde-hex = "0.1.0"
[dependencies.csv]
version = "1"
optional = true
[dependencies.satrs-shared]
version = "0.1.1"
features = ["serde"]
[dependencies.satrs-mib-codegen]
path = "codegen"
version = "0.1.0"
[dependencies.serde]
version = "1"
default-features = false
[features]
default = ["std"]
std = ["csv", "serde/std"]