spacepackets/Cargo.toml

30 lines
927 B
TOML
Raw Normal View History

2022-06-18 22:48:51 +02:00
[package]
name = "spacepackets"
version = "0.1.0"
edition = "2021"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
description = "Generic implementations for various CCSDS and ECSS packet standards"
homepage = "https://egit.irs.uni-stuttgart.de/rust/spacepackets"
repository = "https://egit.irs.uni-stuttgart.de/rust/spacepackets"
license = "Apache-2.0"
keywords = ["no-std", "space", "packets", "ccsds", "ecss"]
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]
num = "0.4"
2022-08-05 00:55:38 +02:00
serde = { version = "1.0.142", features = ["derive"] }
2022-06-18 22:48:51 +02:00
zerocopy = "0.6.1"
crc = "3.0.0"
delegate = "0.7.0"
chrono = "0.4.20"
2022-06-18 22:48:51 +02:00
[dev-dependencies.postcard]
2022-08-14 18:12:52 +02:00
version = "1.0.1"
2022-06-18 22:48:51 +02:00
features = ["use-std"]
[features]
default = ["alloc"]
2022-07-31 11:38:58 +02:00
std = ["postcard/use-std"]
2022-06-18 22:48:51 +02:00
alloc = ["serde/alloc"]