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]
|
|
|
|
thiserror = "1.0"
|
2022-08-21 00:17:46 +02:00
|
|
|
delegate = "0.7.0"
|
2022-08-20 23:21:36 +02:00
|
|
|
hashbrown = "0.12.3"
|
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]
|
|
|
|
version = "1.2.0"
|
|
|
|
default-features = false
|
2022-08-08 01:24:28 +02:00
|
|
|
|
2022-08-20 23:21:36 +02:00
|
|
|
[dependencies.bus]
|
|
|
|
version = "2.2.3"
|
|
|
|
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]
|
|
|
|
serde = "1.0.143"
|
|
|
|
zerocopy = "0.6.1"
|
2022-08-18 01:32:02 +02:00
|
|
|
once_cell = "1.13.1"
|
2022-08-13 19:44:52 +02:00
|
|
|
|
2022-09-07 11:02:45 +02:00
|
|
|
[dev-dependencies.postcard]
|
|
|
|
version = "1.0.1"
|
|
|
|
|
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 = []
|
|
|
|
|