spacepackets/Cargo.toml

58 lines
1.5 KiB
TOML
Raw Normal View History

2022-06-18 22:48:51 +02:00
[package]
name = "spacepackets"
2024-01-23 17:59:56 +01:00
version = "0.7.0-beta.4"
2022-06-18 22:48:51 +02:00
edition = "2021"
2023-08-11 14:00:46 +02:00
rust-version = "1.61"
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]
crc = "3"
2023-07-02 18:43:05 +02:00
delegate = ">=0.8, <0.11"
2023-07-10 10:25:11 +02:00
2023-08-28 18:45:24 +02:00
[dependencies.zerocopy]
2023-08-28 18:47:41 +02:00
version = "0.7"
2023-08-28 18:45:24 +02:00
features = ["derive"]
2023-07-10 10:25:11 +02:00
[dependencies.thiserror]
version = "1"
optional = true
2023-02-05 01:15:34 +01:00
[dependencies.num_enum]
2023-08-28 18:36:00 +02:00
version = ">0.5, <=0.7"
2023-02-05 01:15:34 +01:00
default-features = false
2022-08-16 10:11:49 +02:00
[dependencies.serde]
version = "1"
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]
2023-07-06 01:24:40 +02:00
version = "1"
2022-06-18 22:48:51 +02:00
[features]
2022-12-19 11:00:45 +01:00
default = ["std"]
2023-07-10 10:25:11 +02:00
std = ["chrono/std", "chrono/clock", "alloc", "thiserror"]
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]
2024-01-31 14:55:19 +01:00
features = ["derive", "rc", "unstable"]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"]