Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
blueluna committed Feb 13, 2024
1 parent 3092a56 commit 9b87f44
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ members = [
"psila-host",
"psila-service",
]
resolver = "2"
2 changes: 1 addition & 1 deletion psila-crypto-rust-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "psila-crypto-rust-crypto"
version = "0.1.0"
edition = "2018"
edition = "2021"

[dependencies]
psila-crypto = { path = "../psila-crypto" }
Expand Down
2 changes: 1 addition & 1 deletion psila-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name = "psila-crypto"
version = "0.0.1"
authors = ["Erik Svensson <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
6 changes: 3 additions & 3 deletions psila-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Library for reading/writing Zigbee packages."
version = "0.0.1"
authors = ["Erik Svensson <[email protected]>"]
license = "MIT"
edition = "2018"
edition = "2021"
repository = "https://github.com/blueluna/psilas"
categories = ["network-programming"]
keywords = ["zigbee", "iot", "wpan", "network"]
Expand All @@ -14,11 +14,11 @@ default = []
core = ["heapless"]

[dependencies]
byte = { git = "https://github.com/andylokandy/byte.git" }
byte = "0.2.7"
byteorder = { version = "1", default-features = false }
bitflags = "2.4"
hash32 = "0.2"
hash32-derive = "0.1"
heapless = { version = "0.7.7", optional = true }
ieee802154 = { git = "https://github.com/blueluna/ieee-802.15.4.git" }
ieee802154 = { git = "https://github.com/rust-iot/rust-ieee802.15.4.git" }
psila-crypto = { path = "../psila-crypto" }
6 changes: 3 additions & 3 deletions psila-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "psila-host"
version = "0.0.1"
authors = ["Erik Svensson <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
byte = { git = "https://github.com/andylokandy/byte.git" }
byte = "0.2.7"
byteorder = { version = "1", default-features = false }
clap = "2.32"
slice-deque = "0.3"
ieee802154 = { git = "https://github.com/blueluna/ieee-802.15.4.git" }
ieee802154 = { git = "https://github.com/rust-iot/rust-ieee802.15.4.git" }
esercom = { git = "https://github.com/blueluna/esercom.git", branch = "master" }
psila-data = { path = "../psila-data" }
psila-crypto-rust-crypto = { path = "../psila-crypto-rust-crypto" }
Expand Down
6 changes: 3 additions & 3 deletions psila-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "psila-service"
version = "0.0.1"
authors = ["Erik Svensson <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
bbqueue = "0.5"
byte = { git = "https://github.com/andylokandy/byte.git" }
ieee802154 = { git = "https://github.com/blueluna/ieee-802.15.4.git" }
byte = "0.2.7"
ieee802154 = { git = "https://github.com/rust-iot/rust-ieee802.15.4.git" }
psila-crypto = { path = "../psila-crypto" }
psila-data = { path = "../psila-data" }
heapless = "0.7"
Expand Down

0 comments on commit 9b87f44

Please sign in to comment.