]> patrickod personal git archive - tincan.git/blob - rs-lorachat/Cargo.toml
b76ed9186bdb91f98b65ab17afbd7bb89809d003
[tincan.git] / rs-lorachat / Cargo.toml
1 [package]
2 name = "rs-lorachat"
3 version = "0.1.0"
4 authors = ["Andy Isaacson <adi@hexapodia.org>"]
5 edition = "2018"
6
7 [dependencies]
8 feather_m0 = { git = "https://github.com/atsamd-rs/atsamd" }
9 # feather_m0 = { path = "/home/adi/opp/atsamd" }
10 cortex-m = "0.6"
11 embedded-hal = "0.2.3"
12
13 [dependencies.cortex-m-rt]
14 version = "0.6.12"
15 optional = true
16
17 [dependencies.atsamd-hal]
18 version = "0.12"
19 default-features = false
20
21 [dependencies.panic-halt]
22 version = "0.2"
23 optional = true
24
25 [dependencies.usb-device]
26 version = "0.2"
27 optional = true
28
29 [dependencies.usbd-serial]
30 version = "0.1"
31 optional = true
32
33 [dev-dependencies]
34 cortex-m-semihosting = "0.3"
35 heapless = "0.5"
36
37 [features]
38 default = ["rt", "atsamd-hal/samd21g", "panic_halt"]
39 rt = ["cortex-m-rt", "atsamd-hal/samd21g-rt"]
40 panic_halt = ["panic-halt"]
41 usb = ["atsamd-hal/usb", "usb-device", "usbd-serial"]
42 unproven = ["atsamd-hal/unproven"]
43 # Enable pins for the radio on "RadioFruits" with RFM95, RFM96, RFM69
44 rfm = []