spacepackets/Cargo.toml

71 lines
1.6 KiB
TOML
Raw Normal View History

2022-06-18 22:48:51 +02:00
[package]
name = "spacepackets"
2024-04-20 10:42:36 +02:00
version = "0.11.1"
2022-06-18 22:48:51 +02:00
edition = "2021"
2024-04-13 17:39:53 +02:00
rust-version = "1.65"
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"]
2024-03-18 15:14:40 +01:00
[dependencies.time]
version = "0.3"
default-features = false
optional = true
2022-08-16 10:11:49 +02:00
[dependencies.chrono]
2022-11-30 01:05:37 +01:00
version = "0.4"
2022-08-16 10:11:49 +02:00
default-features = false
2024-03-18 15:14:40 +01:00
optional = true
2022-08-16 10:11:49 +02:00
[dependencies.num-traits]
version = "0.2"
default-features = false
2022-06-18 22:48:51 +02:00
2024-03-28 22:48:58 +01:00
[dependencies.defmt]
version = "0.3"
optional = true
2024-03-18 15:14:40 +01:00
[dev-dependencies]
postcard = "1"
chrono = "0.4"
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"]
2024-03-18 15:14:40 +01:00
chrono = ["dep:chrono"]
timelib = ["dep:time"]
2024-03-29 13:42:02 +01:00
defmt = ["dep:defmt"]
2022-10-26 00:22:56 +02:00
[package.metadata.docs.rs]
2024-01-31 14:56:41 +01:00
all-features = true
2024-04-03 13:30:01 +02:00
rustdoc-args = ["--cfg", "docs_rs", "--generate-link-to-definition"]