Skip to content

Commit

Permalink
update cargo files
Browse files Browse the repository at this point in the history
  • Loading branch information
thvdveld committed Dec 17, 2024
1 parent 066649a commit 4f9094d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dot15d4-frame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
name = "dot15d4-frame"
version = "0.1.0"
edition = "2021"
authors = ["Thibaut Vandervelden <thvdveld@vub.be>"]
repository = "https://github.com/thvdveld/dot15d4"
description = "Frame parsing and building for the dot15d4 crate"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dot15d4-macros = { path = "../dot15d4-macros" }
dot15d4-macros = { version = "0.1.0", path = "../dot15d4-macros" }

bitflags = "2.4.2"
heapless = "0.8.0"
Expand Down
4 changes: 3 additions & 1 deletion dot15d4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
name = "dot15d4"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/thvdveld/dot15d4"
description = "IEEE 802.15.4 implementation in Rust"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dot15d4-frame = { path = "../dot15d4-frame" }
dot15d4-frame = { version = "0.1.0", path = "../dot15d4-frame" }

log = { version = "0.4.21", optional = true }
defmt = { version = "0.3", optional = true }
Expand Down

0 comments on commit 4f9094d

Please sign in to comment.