Skip to content

Commit

Permalink
chore(*): update embassy-time to 0.3 and serde-bytes (#199)
Browse files Browse the repository at this point in the history
* Update embassy-time to 0.3

* Update serde-bytes version
  • Loading branch information
MathiasKoch authored Jan 18, 2024
1 parent 060118c commit aeac149
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,3 @@ incremental = false
lto = 'fat'
opt-level = "s" # <-
overflow-checks = false # <-

[patch.crates-io]
embassy-executor = { version = "0.4", git = "https://github.com/embassy-rs/embassy", rev = "49ee0564" }
embassy-rp = { version = "0.1", git = "https://github.com/embassy-rs/embassy", rev = "49ee0564" }
embassy-time = { version = "0.2", git = "https://github.com/embassy-rs/embassy", rev = "49ee0564" }
6 changes: 3 additions & 3 deletions atat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ embedded-io = "0.6.0"
embedded-io-async = "0.6.0"
futures = { version = "0.3", default-features = false }
embassy-sync = "0.5"
embassy-time = "0.2"
embassy-time = "0.3"
heapless = { version = "^0.8", features = ["serde"] }
serde_at = { path = "../serde_at", version = "^0.21.0", optional = true }
atat_derive = { path = "../atat_derive", version = "^0.21.0", optional = true }
serde_bytes = { version = "0.11.5", default-features = false, optional = true }
serde_bytes = { version = "0.11.14", default-features = false, optional = true }
heapless-bytes = { version = "0.3.0", optional = true }

nom = { version = "^7.1", default-features = false }
Expand All @@ -35,7 +35,7 @@ log = { version = "^0.4", default-features = false, optional = true }
defmt = { version = "^0.3", optional = true }

[dev-dependencies]
embassy-time = { version = "0.2", features = ["std", "generic-queue"] }
embassy-time = { version = "0.3", features = ["std", "generic-queue"] }
critical-section = { version = "1.1", features = ["std"] }
serde_at = { path = "../serde_at", version = "^0.21.0", features = [
"heapless",
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ cortex-m = { version = "0.7.6", optional = true }
cortex-m-rt = { version = "0.7.3", optional = true }
defmt-rtt = { version = "0.4", optional = true }
panic-probe = { version = "0.3.0", features = ["print-defmt"], optional = true }
embassy-executor = { version = "0.4", features = [
embassy-executor = { version = "0.5", features = [
"defmt",
"arch-cortex-m",
"executor-thread",
"integrated-timers",
], optional = true }
embassy-time = "0.2"
embassy-time = "0.3"
embassy-rp = { version = "0.1", features = [
"unstable-pac",
"time-driver",
Expand Down
2 changes: 1 addition & 1 deletion serde_at/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default-features = false

[dev-dependencies]
serde_derive = "^1"
serde_bytes = { version = "0.11.5", default-features = false }
serde_bytes = { version = "0.11.14", default-features = false }

[features]
default = []
Expand Down

0 comments on commit aeac149

Please sign in to comment.