diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-10-22 18:05:58 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-22 18:05:58 +0000 |
| commit | a8797f84f69b7668a3f89b6cba3e39bce5649079 (patch) | |
| tree | be282037709bcb21cac4e2cccb84ee02e93ac9f3 | |
| parent | e038834ac331af8852eeb674584400245f6b42d7 (diff) | |
| parent | 504655d49180164769f6f862ef4699c040b6c049 (diff) | |
Merge #446
446: Use upstream version of rust-lorawan r=lulf a=lulf
The async device has been merged, so dependency can be updated to commit on the upstream master branch.
Co-authored-by: Ulf Lilleengen <[email protected]>
| -rw-r--r-- | embassy-lora/Cargo.toml | 4 | ||||
| -rw-r--r-- | examples/stm32l0/Cargo.toml | 4 | ||||
| -rw-r--r-- | examples/stm32wl55/Cargo.toml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/embassy-lora/Cargo.toml b/embassy-lora/Cargo.toml index 5d345d2df..00bd3b847 100644 --- a/embassy-lora/Cargo.toml +++ b/embassy-lora/Cargo.toml | |||
| @@ -29,5 +29,5 @@ futures = { version = "0.3.17", default-features = false, features = [ "async-aw | |||
| 29 | embedded-hal = { version = "0.2", features = ["unproven"] } | 29 | embedded-hal = { version = "0.2", features = ["unproven"] } |
| 30 | bit_field = { version = "0.10" } | 30 | bit_field = { version = "0.10" } |
| 31 | 31 | ||
| 32 | lorawan-device = { git = "https://github.com/lulf/rust-lorawan.git", rev = "e529b74421346cb6537f8872d3c8eddcf14804b4", default-features = false, features = ["async"] } | 32 | lorawan-device = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["async"] } |
| 33 | lorawan-encoding = { git = "https://github.com/lulf/rust-lorawan.git", rev = "e529b74421346cb6537f8872d3c8eddcf14804b4", default-features = false } | 33 | lorawan-encoding = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false } |
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml index 970833944..c9d94496d 100644 --- a/examples/stm32l0/Cargo.toml +++ b/examples/stm32l0/Cargo.toml | |||
| @@ -24,8 +24,8 @@ embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | |||
| 24 | embassy-macros = { path = "../../embassy-macros" } | 24 | embassy-macros = { path = "../../embassy-macros" } |
| 25 | 25 | ||
| 26 | embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["sx127x", "time"] } | 26 | embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["sx127x", "time"] } |
| 27 | lorawan-device = { git = "https://github.com/lulf/rust-lorawan.git", rev = "e529b74421346cb6537f8872d3c8eddcf14804b4", default-features = false, features = ["async"] } | 27 | lorawan-device = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["async"] } |
| 28 | lorawan-encoding = { git = "https://github.com/lulf/rust-lorawan.git", rev = "e529b74421346cb6537f8872d3c8eddcf14804b4", default-features = false, features = ["default-crypto"] } | 28 | lorawan-encoding = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["default-crypto"] } |
| 29 | 29 | ||
| 30 | defmt = "0.2.3" | 30 | defmt = "0.2.3" |
| 31 | defmt-rtt = "0.2.0" | 31 | defmt-rtt = "0.2.0" |
diff --git a/examples/stm32wl55/Cargo.toml b/examples/stm32wl55/Cargo.toml index f0d08cb61..d92f7aa00 100644 --- a/examples/stm32wl55/Cargo.toml +++ b/examples/stm32wl55/Cargo.toml | |||
| @@ -23,8 +23,8 @@ embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = [" | |||
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["stm32wl", "time"] } | 24 | embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["stm32wl", "time"] } |
| 25 | 25 | ||
| 26 | lorawan-device = { git = "https://github.com/lulf/rust-lorawan.git", rev = "e529b74421346cb6537f8872d3c8eddcf14804b4", default-features = false, features = ["async"] } | 26 | lorawan-device = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["async"] } |
| 27 | lorawan-encoding = { git = "https://github.com/lulf/rust-lorawan.git", rev = "e529b74421346cb6537f8872d3c8eddcf14804b4", default-features = false, features = ["default-crypto"] } | 27 | lorawan-encoding = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["default-crypto"] } |
| 28 | 28 | ||
| 29 | defmt = "0.2.3" | 29 | defmt = "0.2.3" |
| 30 | defmt-rtt = "0.2.0" | 30 | defmt-rtt = "0.2.0" |
