[package] name = "spacepackets" version = "0.1.0" edition = "2021" authors = ["Robin Mueller "] 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 = { version = "0.4", default-features = false } serde = { version = "1.0.142", default-features = false, features = ["derive"] } zerocopy = "0.6.1" crc = "3.0.0" delegate = "0.7.0" chrono = { version = "0.4.20", default-features = false } [dev-dependencies.postcard] version = "1.0.1" [features] default = ["alloc"] std = ["chrono/std", "chrono/clock", "postcard/use-std"] alloc = ["serde/alloc", "chrono/alloc", "postcard/alloc"]