rust-bfd/Cargo.toml

20 lines
407 B
TOML
Raw Permalink Normal View History

2024-01-31 00:59:42 -08:00
[package]
name = "rust-bfd"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-05-19 15:02:57 -07:00
atomic = "0.6.0"
bytemuck = { version = "1.14.1", features = ["derive"] }
2024-01-31 00:59:42 -08:00
byteorder = "1.5.0"
2024-05-19 15:02:57 -07:00
env_logger = "0.11.1"
futures = "0.3.30"
itertools = "0.12.1"
log = "0.4.20"
2024-01-31 00:59:42 -08:00
nom = "7.1.3"
nom-derive = "0.10.1"
proc-bitfield = "0.3.1"
rand = "0.8.5"
tokio = { version = "1.35.1", features = ["net", "full"] }
tokio-timer = "0.2.13"