Skip to content

Commit b6843ce

Browse files
authored
Bump embassy dependencies to newly released versions (#91)
1 parent 06a7b5c commit b6843ce

File tree

2 files changed

+19
-38
lines changed

2 files changed

+19
-38
lines changed

Cargo.toml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "ublox-short-range-rs"
33
version = "0.1.1"
4-
authors = ["Mads Andresen <ma@blackbird.online>"]
4+
authors = ["The Factbird Team"]
55
description = "Driver crate for u-blox short range devices, implementation follows 'UBX-14044127 - R40'"
66
readme = "../README.md"
77
keywords = ["ublox", "wifi", "shortrange", "bluetooth"]
88
categories = ["embedded", "no-std"]
99
license = "MIT OR Apache-2.0"
10-
repository = "https://github.com/BlackbirdHQ/ublox-short-range-rs"
10+
repository = "https://github.com/FactbirdHQ/ublox-short-range-rs"
1111
edition = "2021"
1212

1313
[lib]
@@ -20,14 +20,14 @@ atat = { version = "0.23", features = ["derive", "bytes"] }
2020
heapless = { version = "^0.8", features = ["serde"] }
2121
serde = { version = "^1", default-features = false, features = ["derive"] }
2222
# ublox-sockets = { version = "0.5", optional = true }
23-
ublox-sockets = { git = "https://github.com/BlackbirdHQ/ublox-sockets", rev = "9f7fe54", optional = true }
23+
ublox-sockets = { git = "https://github.com/FactbirdHQ/ublox-sockets", rev = "0b0d186", optional = true }
2424
portable-atomic = "1.6"
2525

2626
log = { version = "^0.4", default-features = false, optional = true }
2727
defmt = { version = "^0.3", optional = true }
2828

2929
embedded-hal = "1.0"
30-
embassy-time = "0.3"
30+
embassy-time = "0.4"
3131
embassy-sync = "0.6"
3232
embassy-futures = "0.1"
3333

@@ -37,7 +37,7 @@ futures-util = { version = "0.3.29", default-features = false }
3737
embedded-io-async = "0.6"
3838

3939
embassy-net-ppp = { version = "0.1", optional = true }
40-
embassy-net = { version = "0.4", features = [
40+
embassy-net = { version = "0.6", features = [
4141
"proto-ipv4",
4242
"medium-ip",
4343
], optional = true }
@@ -82,15 +82,15 @@ exclude = ["examples"]
8282

8383

8484
[patch.crates-io]
85-
atat = { git = "https://github.com/BlackbirdHQ/atat", rev = "a466836" }
85+
atat = { git = "https://github.com/FactbirdHQ/atat", rev = "c31f700" }
8686
# atat = { path = "../atat/atat" }
8787

88-
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
89-
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
90-
embassy-time-driver = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
91-
embassy-time-queue-driver = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
92-
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
93-
embassy-net-driver = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
94-
embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
95-
embassy-net-ppp = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
96-
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "80cb2bc" }
88+
# embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
89+
# embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
90+
# embassy-time-driver = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
91+
# embassy-time-queue-driver = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
92+
# embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
93+
# embassy-net-driver = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
94+
# embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
95+
embassy-net-ppp = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }
96+
# embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "a991cd6" }

examples/rpi-pico/Cargo.toml

+4-23
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,23 @@ edition = "2021"
66

77
[dependencies]
88
ublox-short-range-rs = { path = "../../", features = ["odin-w2xx", "defmt"] }
9-
embassy-executor = { version = "0.5", features = [
9+
embassy-executor = { version = "0.7", features = [
1010
"defmt",
11-
"integrated-timers",
1211
"nightly",
1312
"arch-cortex-m",
1413
"executor-thread",
1514
] }
16-
embassy-time = { version = "0.3", features = [
15+
embassy-time = { version = "0.4", features = [
1716
"defmt",
1817
"defmt-timestamp-uptime",
1918
] }
2019
embassy-sync = { version = "0.6" }
21-
embassy-rp = { version = "0.1.0", features = [
20+
embassy-rp = { version = "0.3", features = [
2221
"defmt",
2322
"unstable-pac",
2423
"time-driver",
2524
] }
2625
embassy-futures = { version = "0.1.0" }
27-
no-std-net = { version = "0.6", features = ["serde"] }
2826

2927
static_cell = { version = "2", features = ["nightly"] }
3028
defmt = "0.3.4"
@@ -43,7 +41,7 @@ embedded-io-async = { version = "0.6" }
4341
heapless = "0.8"
4442
portable-atomic = { version = "*", features = ["unsafe-assume-single-core"] }
4543

46-
embassy-net = { version = "0.4", optional = true, features = [
44+
embassy-net = { version = "0.6", optional = true, features = [
4745
"defmt",
4846
"proto-ipv4",
4947
"medium-ip",
@@ -63,24 +61,7 @@ internal-network-stack = ["ublox-short-range-rs/internal-network-stack"]
6361
ppp = ["dep:embassy-net", "dep:embassy-net-ppp", "ublox-short-range-rs/ppp"]
6462

6563
[patch.crates-io]
66-
# embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
67-
# embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
68-
# embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
69-
# embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
70-
# embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
71-
# embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
72-
73-
74-
embassy-rp = { path = "../../../embassy/embassy-rp" }
75-
embassy-time = { path = "../../../embassy/embassy-time" }
76-
embassy-sync = { path = "../../../embassy/embassy-sync" }
77-
embassy-net = { path = "../../../embassy/embassy-net" }
78-
embassy-net-ppp = { path = "../../../embassy/embassy-net-ppp" }
79-
embassy-futures = { path = "../../../embassy/embassy-futures" }
80-
embassy-executor = { path = "../../../embassy/embassy-executor" }
8164
ublox-sockets = { path = "../../../ublox-sockets" }
82-
no-std-net = { path = "../../../no-std-net" }
83-
atat = { path = "../../../atat/atat" }
8465

8566
[profile.dev]
8667
debug = 2

0 commit comments

Comments
 (0)