spacepackets/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2022-06-18 22:48:51 +02:00
[package]
name = "spacepackets"
2022-12-03 15:47:18 +01:00
version = "0.3.1"
2022-06-18 22:48:51 +02:00
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]
2022-11-30 01:05:37 +01:00
zerocopy = "0.6"
crc = "3.0"
delegate = "0.8"
2022-08-16 10:11:49 +02:00
[dependencies.serde]
2022-11-30 01:05:37 +01:00
version = "1.0"
2022-08-16 10:11:49 +02:00
default-features = false
features = ["derive"]
[dependencies.chrono]
2022-11-30 01:05:37 +01:00
version = "0.4"
2022-08-16 10:11:49 +02:00
default-features = false
[dependencies.num-traits]
version = "0.2"
default-features = false
2022-06-18 22:48:51 +02:00
[dev-dependencies.postcard]
2022-11-30 01:05:37 +01:00
version = "1.0"
2022-06-18 22:48:51 +02:00
[features]
2022-08-16 10:11:49 +02:00
default = ["std"]
std = ["chrono/std", "chrono/clock", "alloc"]
alloc = ["postcard/alloc"]
2022-10-26 00:22:56 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]