forked from rust-iot/rust-ieee802.15.4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (38 loc) · 1.07 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
40
41
42
43
44
45
46
[package]
name = "ieee802154"
version = "0.6.1"
authors = [
"Erik Henriksson <[email protected]>",
"Hanno Braun <[email protected]>",
"Ryan Kurte <[email protected]>",
]
edition = "2018"
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"]
[features]
[dependencies]
hash32 = "0.2.1"
hash32-derive = "0.1"
byte = "0.2.4"
defmt = { version = ">=0.2.0,<0.4", optional = true }
[dependencies.ccm]
version = "0.4.0"
default-features = false
[dependencies.cipher]
version = "0.3.0"
default-features = false
[dependencies.serde]
version = "1.0"
default-features = false
optional = true
features = [ "derive" ]
[dev-dependencies]
rand = "0.8.3"
[dev-dependencies.aes]
version = "0.7.0"
default-features = false