sat-rs/fsrc-core/Cargo.toml

45 lines
805 B
TOML
Raw Normal View History

2022-06-16 15:45:22 +02:00
[package]
name = "fsrc-core"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-10-22 15:31:50 +02:00
delegate = "0.8"
hashbrown = "0.12"
2022-10-22 17:16:28 +02:00
heapless = "0.7"
2022-08-14 18:13:54 +02:00
2022-08-20 23:21:36 +02:00
[dependencies.num-traits]
version = "0.2"
default-features = false
2022-08-14 18:13:54 +02:00
2022-08-14 19:51:51 +02:00
[dependencies.downcast-rs]
2022-10-22 15:31:50 +02:00
version = "1.2"
2022-08-14 19:51:51 +02:00
default-features = false
2022-08-08 01:24:28 +02:00
2022-08-20 23:21:36 +02:00
[dependencies.bus]
2022-10-22 15:31:50 +02:00
version = "2.2"
2022-08-20 23:21:36 +02:00
optional = true
2022-09-07 11:02:45 +02:00
[dependencies.crossbeam-channel]
version= "0.5"
default-features = false
2022-08-20 23:21:36 +02:00
[dependencies.spacepackets]
path = "../spacepackets"
2022-08-13 19:44:52 +02:00
[dev-dependencies]
2022-10-22 15:31:50 +02:00
serde = "1.0"
zerocopy = "0.6"
once_cell = "1.13"
2022-08-13 19:44:52 +02:00
2022-09-07 11:02:45 +02:00
[dev-dependencies.postcard]
2022-10-22 15:31:50 +02:00
version = "1.0"
2022-09-07 11:02:45 +02:00
2022-08-08 01:24:28 +02:00
[features]
2022-08-19 11:52:59 +02:00
default = ["std"]
2022-09-07 11:02:45 +02:00
std = ["downcast-rs/std", "alloc", "bus", "postcard/use-std", "crossbeam-channel/std"]
2022-08-20 23:21:36 +02:00
alloc = []
2022-10-22 17:16:28 +02:00
heapless = []