-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
39 lines (35 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "ieee80211"
version = "0.5.2"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Frostie314159/ieee80211-rs"
description = "A parser for IEEE 802.11 frames."
authors = ["Frostie314159"]
rust-version = "1.65.0"
[dependencies]
bitfield-struct = "0.8.0"
const_soft_float = { version = "0.1.4", features = ["no_std"] }
crc32fast = { version = "1.3.2", default-features = false }
defmt = { version = "0.3.8", optional = true }
hmac = { version = "0.12.1", optional = true }
mac-parser = { version = "0.1.6" }
macro-bits = "0.1.4"
num = { version = "0.4.3", default-features = false }
pbkdf2 = { version = "0.12.2", optional = true }
scroll = { version = "0.12.0", default-features = false, features = ["derive"] }
sha1 = { version = "0.10.6", default-features = false, optional = true }
tlv-rs = "0.2.3"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
hex = { version = "0.4.3", default-features = false }
[[bench]]
name = "ieee80211"
harness = false
[features]
alloc = []
crypto = ["dep:pbkdf2", "dep:hmac", "dep:sha1"]
default = ["crypto"]
std = ["alloc", "scroll/std"]
defmt = ["dep:defmt", "mac-parser/defmt"]