spacepackets/Cargo.toml

46 lines
1.2 KiB
TOML
Raw Normal View History

2022-06-18 22:48:51 +02:00
[package]
name = "spacepackets"
2023-01-09 11:21:07 +01:00
version = "0.4.0"
2022-06-18 22:48:51 +02:00
edition = "2021"
2022-12-07 19:05:09 +01:00
rust-version = "1.60"
2022-06-18 22:48:51 +02:00
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-12-04 12:17:36 +01:00
optional = true
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-12-19 11:00:45 +01:00
default = ["std"]
2022-08-16 10:11:49 +02:00
std = ["chrono/std", "chrono/clock", "alloc"]
2022-12-19 11:00:45 +01:00
serde = ["dep:serde", "chrono/serde"]
2022-12-05 09:48:11 +01:00
alloc = ["postcard/alloc", "chrono/alloc"]
2022-10-26 00:22:56 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]