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"
|
|
|
|
bus = "2.2.3"
|
|
|
|
num = "0.4"
|
2022-08-14 18:13:54 +02:00
|
|
|
|
|
|
|
[dependencies.spacepackets]
|
|
|
|
path = "../spacepackets"
|
|
|
|
|
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-13 19:44:52 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
postcard = { version = "1.0.1", features = ["use-std"] }
|
|
|
|
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-08-08 01:24:28 +02:00
|
|
|
[features]
|
2022-08-19 11:52:59 +02:00
|
|
|
default = ["std"]
|
|
|
|
std = ["downcast-rs/std"]
|