sat-rs/satrs-core/Cargo.toml

52 lines
943 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"
2022-11-19 12:46:41 +01:00
hashbrown = "0.13"
2022-10-22 17:16:28 +02:00
heapless = "0.7"
2022-10-30 21:27:36 +01:00
paste = "1.0"
2022-11-03 13:22:41 +01:00
embed-doc-image = "0.1"
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 = []
2022-11-03 13:22:41 +01:00
doc-images = []
2022-10-26 00:23:10 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]