-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (35 loc) · 997 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "lora-wl"
version = "0.1.0"
edition = "2018"
author = "Jorge Iglesias <jorge@munin.space>"
[dependencies]
cortex-m-rtic = { version = "0.5.8", default-features = false, features = ["cortex-m-7"] }
cipher = "0.3.0"
cmac = "0.6"
defmt = "0.2.0"
defmt-rtt = "0.2.0"
defmt-test = "~0.2.0"
generic-array = "0.14.4"
panic-probe = { version = "~0.2.0", features = ["print-defmt"] }
[dependencies.stm32wl-hal]
git = "https://github.com/munin-space/stm32wl-hal.git"
branch = "public"
features = ["rt", "stm32wl5x_cm4", "defmt"]
[dependencies.lorawan-device]
git = "https://github.com/munin-space/rust-lorawan.git"
branch = "public"
features = ["withdefmt"]
[dependencies.lorawan-encoding]
git = "https://github.com/munin-space/rust-lorawan.git"
branch = "public"
default-features = false
[features]
default = ["defmt-trace", "stm32wl-hal/defmt-trace"]
# do NOT modify these features
defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []