spacepackets/Cargo.toml
Robin.Mueller aeb2e806b8
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
move improvements
2022-12-04 17:11:44 +01:00

45 lines
1.2 KiB
TOML

[package]
name = "spacepackets"
version = "0.4.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]
zerocopy = "0.6"
crc = "3.0"
delegate = "0.8"
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
features = ["derive"]
[dependencies.chrono]
version = "0.4"
default-features = false
[dependencies.num-traits]
version = "0.2"
default-features = false
[dev-dependencies.postcard]
version = "1.0"
[features]
default = ["std", "dep:serde"]
std = ["chrono/std", "chrono/clock", "alloc"]
serde = ["chrono/serde"]
alloc = ["postcard/alloc"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]