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]
|
2022-08-16 02:15:57 +02:00
|
|
|
num = { version = "0.4", default-features = false }
|
|
|
|
serde = { version = "1.0.142", default-features = false, features = ["derive"] }
|
2022-06-18 22:48:51 +02:00
|
|
|
zerocopy = "0.6.1"
|
|
|
|
crc = "3.0.0"
|
|
|
|
delegate = "0.7.0"
|
2022-08-16 02:15:57 +02:00
|
|
|
chrono = { version = "0.4.20", default-features = false }
|
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]
|
2022-08-05 00:42:59 +02:00
|
|
|
default = ["alloc"]
|
2022-08-16 02:15:57 +02:00
|
|
|
std = ["chrono/std", "chrono/clock", "postcard/use-std"]
|
|
|
|
alloc = ["serde/alloc", "chrono/alloc", "postcard/alloc"]
|