radio-sx127x 0.2.3

Rust driver for the Semtec SX127x Sub GHZ LoRa Radio ICs
Documentation
[package]
name = "radio-sx127x"
description = "Rust driver for the Semtec SX127x Sub GHZ LoRa Radio ICs"
version = "0.2.3"
authors = ["Ryan Kurte <ryankurte@gmail.com>"]
license = "MPL-2.0"

[features]
util = [ "structopt", "linux-embedded-hal", "simplelog", "humantime" ] 
default = [ "util" ]

[dependencies]
libc = "0.2.42"
log = { version = "0.4.6" }
bitflags = "1.0.4"
embedded-hal = { version = "0.2.3", features = ["unproven"] }
embedded-spi = "0.5.1"
radio = "0.3.0"

structopt = { version = "0.2.15", optional = true }
linux-embedded-hal = { version = "0.2.2", optional = true }
simplelog = { version = "0.5.3", optional = true }
humantime = { version = "1.2.0", optional = true }

[dev-dependencies]
color-backtrace = "0.1.3"

[[bin]]
name = "sx127x-util"
path = "src/util/main.rs"
required-features = ["util"]

[[test]]
name = "integration"
path = "tests/integration.rs"