Skip to content

Commit

Permalink
Expose more fields in beacon as pub
Browse files Browse the repository at this point in the history
This allows to not just parse but also generate these frames.
  • Loading branch information
tdittr committed Oct 8, 2024
1 parent c57fb7e commit c930ad2
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 111 deletions.
41 changes: 22 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,46 +1,49 @@
[package]
name = "ieee802154"
version = "0.6.1"
name = "ieee802154"
version = "0.7.0"
authors = [
"Erik Henriksson <erikhenrikssn@gmail.com>",
"Hanno Braun <hanno@braun-robotics.com>",
"Ryan Kurte <ryan@kurte.nz>",
"Erik Henriksson <erikhenrikssn@gmail.com>",
"Hanno Braun <hanno@braun-robotics.com>",
"Ryan Kurte <ryan@kurte.nz>",
]
edition = "2018"
edition = "2021"

description = "Partial implementation of the IEEE 802.15.4 standard for low-rate wireless personal area networks"
description = "Partial implementation of the IEEE 802.15.4 standard for low-rate wireless personal area networks"
documentation = "https://docs.rs/ieee802154"
repository = "https://github.com/rust-iot/rust-ieee802.15.4"
license = "0BSD"
readme = "README.md"
categories = ["embedded", "network-programming", "no-std"]
keywords = ["WPAN"]
repository = "https://github.com/rust-iot/rust-ieee802.15.4"
license = "0BSD"
readme = "README.md"
categories = ["embedded", "network-programming", "no-std"]
keywords = ["WPAN"]

[features]
defmt = ["dep:defmt", "heapless/defmt-03"]
serde = ["dep:serde"]

[dependencies]
hash32 = "0.2.1"
hash32 = "0.2.1"
hash32-derive = "0.1"
byte = "0.2.7"
defmt = { version = ">=0.2.0,<0.4", optional = true }
heapless = "0.8.0"

[dependencies.ccm]
version = "0.4.0"
version = "0.4.0"
default-features = false

[dependencies.cipher]
version = "0.3.0"
version = "0.3.0"
default-features = false

[dependencies.serde]
version = "1.0"
version = "1.0"
default-features = false
optional = true
features = [ "derive" ]
optional = true
features = ["derive"]

[dev-dependencies]
rand = "0.8.3"

[dev-dependencies.aes]
version = "0.7.0"
version = "0.7.0"
default-features = false
Loading

0 comments on commit c930ad2

Please sign in to comment.