chirpstack/lrwn/Cargo.toml

24 lines
521 B
TOML
Raw Normal View History

2022-04-06 20:18:32 +00:00
[package]
name = "lrwn"
2022-04-06 21:13:16 +00:00
description = "Library for encoding / decoding LoRaWAN frames."
homepage = "https://www.chirpstack.io"
license = "MIT"
2022-11-07 11:40:11 +00:00
version = "4.0.3"
2022-04-06 20:18:32 +00:00
authors = ["Orne Brocaar <info@brocaar.com>"]
edition = "2018"
2022-04-06 21:13:16 +00:00
repository = "https://github.com/chirpstack/chirpstack"
2022-04-06 20:18:32 +00:00
[dependencies]
hex = "0.4"
cmac = "0.7"
aes = "0.8"
2022-04-06 20:18:32 +00:00
serde = { version = "1.0", features = ["derive"] }
diesel = { version = "2.0.0", features = [ "postgres" ] }
2022-04-06 20:18:32 +00:00
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Misc
lazy_static = "1.4"