2021-09-30 09:25:45 +02:00
|
|
|
[package]
|
|
|
|
name = "embassy-lora"
|
|
|
|
version = "0.1.0"
|
2022-06-18 02:15:48 +02:00
|
|
|
edition = "2021"
|
2022-10-07 12:41:56 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-09-30 09:25:45 +02:00
|
|
|
|
2022-04-05 21:05:09 +02:00
|
|
|
[package.metadata.embassy_docs]
|
|
|
|
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-lora-v$VERSION/embassy-lora/src/"
|
2022-06-26 23:55:38 +02:00
|
|
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-lora/src/"
|
2023-05-04 22:39:37 +02:00
|
|
|
features = ["stm32wl", "embassy-stm32?/stm32wl55jc-cm4", "embassy-stm32?/unstable-pac", "time", "defmt"]
|
2023-04-28 20:33:20 +02:00
|
|
|
target = "thumbv7em-none-eabi"
|
2021-09-30 09:25:45 +02:00
|
|
|
|
|
|
|
[features]
|
2023-04-07 02:20:59 +02:00
|
|
|
stm32wl = ["dep:embassy-stm32"]
|
2023-07-27 05:23:02 +02:00
|
|
|
time = ["embassy-time", "lorawan-device"]
|
2023-04-27 18:05:33 +02:00
|
|
|
defmt = ["dep:defmt", "lorawan-device/defmt"]
|
2021-09-30 09:25:45 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2021-11-15 17:08:51 +01:00
|
|
|
defmt = { version = "0.3", optional = true }
|
2021-09-30 09:25:45 +02:00
|
|
|
log = { version = "0.4.14", optional = true }
|
|
|
|
|
2023-07-27 04:51:09 +02:00
|
|
|
embassy-time = { version = "0.1.2", path = "../embassy-time", optional = true }
|
2023-04-13 23:03:21 +02:00
|
|
|
embassy-sync = { version = "0.2.0", path = "../embassy-sync" }
|
2021-09-30 09:25:45 +02:00
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true }
|
2023-08-16 00:40:56 +02:00
|
|
|
embedded-hal-async = { version = "=1.0.0-rc.1" }
|
2023-04-22 00:41:25 +02:00
|
|
|
embedded-hal = { version = "0.2", features = ["unproven"] }
|
2021-09-30 09:25:45 +02:00
|
|
|
|
2023-07-28 13:23:22 +02:00
|
|
|
futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] }
|
2023-04-28 20:33:20 +02:00
|
|
|
lora-phy = { version = "1" }
|
2023-07-27 04:51:09 +02:00
|
|
|
lorawan-device = { version = "0.10.0", default-features = false, features = ["async"], optional = true }
|