2021-09-30 07:25:45 +00:00
|
|
|
[package]
|
|
|
|
name = "embassy-lora"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ulf Lilleengen <lulf@redhat.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
sx127x = []
|
|
|
|
stm32wl = ["embassy-stm32", "embassy-stm32/subghz"]
|
|
|
|
time = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2021-11-15 16:08:51 +00:00
|
|
|
defmt = { version = "0.3", optional = true }
|
2021-09-30 07:25:45 +00:00
|
|
|
log = { version = "0.4.14", optional = true }
|
|
|
|
|
|
|
|
embassy = { version = "0.1.0", path = "../embassy", default-features = false }
|
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true }
|
2022-02-16 02:54:39 +00:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.7", git = "https://github.com/embassy-rs/embedded-hal", branch = "embassy2", optional = true}
|
|
|
|
embedded-hal-async = { version = "0.0.1", git = "https://github.com/embassy-rs/embedded-hal", branch = "embassy2"}
|
2021-09-30 07:25:45 +00:00
|
|
|
embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common", default-features = false }
|
|
|
|
futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] }
|
|
|
|
embedded-hal = { version = "0.2", features = ["unproven"] }
|
|
|
|
bit_field = { version = "0.10" }
|
|
|
|
|
2021-12-16 10:34:20 +00:00
|
|
|
lorawan-device = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "0de1a2a31933f7c97887b5718c1755fa5ab93a42", default-features = false, features = ["async"] }
|
|
|
|
lorawan-encoding = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "0de1a2a31933f7c97887b5718c1755fa5ab93a42", default-features = false }
|