# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.65.0" name = "ieee80211" version = "0.5.0" authors = ["Frostie314159"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A parser for IEEE 802.11 frames." readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/Frostie314159/ieee80211-rs" [lib] name = "ieee80211" path = "src/lib.rs" [[example]] name = "beacon" path = "examples/beacon.rs" [[example]] name = "dynamic_mgmt_frame" path = "examples/dynamic_mgmt_frame.rs" [[example]] name = "elements" path = "examples/elements.rs" [[example]] name = "macros" path = "examples/macros.rs" [[example]] name = "match_frames" path = "examples/match_frames.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "no_std" path = "tests/no_std.rs" [[bench]] name = "ieee80211" path = "benches/ieee80211.rs" harness = false [dependencies.bitfield-struct] version = "0.8.0" [dependencies.const_soft_float] version = "0.1.4" features = ["no_std"] [dependencies.crc32fast] version = "1.3.2" default-features = false [dependencies.defmt] version = "0.3.8" optional = true [dependencies.hmac] version = "0.12.1" optional = true [dependencies.mac-parser] version = "0.1.6" features = ["defmt"] [dependencies.macro-bits] version = "0.1.4" [dependencies.num] version = "0.4.3" default-features = false [dependencies.pbkdf2] version = "0.12.2" optional = true [dependencies.scroll] version = "0.12.0" features = ["derive"] default-features = false [dependencies.sha1] version = "0.10.6" optional = true default-features = false [dependencies.tlv-rs] version = "0.2.3" [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.hex] version = "0.4.3" default-features = false [features] alloc = [] crypto = [ "dep:pbkdf2", "dep:hmac", "dep:sha1", ] default = ["crypto"] defmt = ["dep:defmt"] std = [ "alloc", "scroll/std", ]