142 lines
2.6 KiB
TOML
142 lines
2.6 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
name = "lorawan-device"
|
|
version = "0.12.2"
|
|
authors = [
|
|
"Louis Thiery <thiery.louis@gmail.com>",
|
|
"Ulf Lilleengen <lulf@redhat.com>",
|
|
]
|
|
build = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "A Rust LoRaWAN device stack implementation"
|
|
readme = "README.md"
|
|
categories = [
|
|
"embedded",
|
|
"hardware-support",
|
|
"no-std",
|
|
]
|
|
license = "MIT"
|
|
repository = "https://github.com/lora-rs/lora-rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"docsrs",
|
|
]
|
|
|
|
[lib]
|
|
name = "lorawan_device"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies.defmt]
|
|
version = "0.3"
|
|
optional = true
|
|
|
|
[dependencies.document-features]
|
|
version = "0.2.8"
|
|
|
|
[dependencies.embassy-time]
|
|
version = "0.3.0"
|
|
optional = true
|
|
|
|
[dependencies.fastrand]
|
|
version = "2"
|
|
default-features = false
|
|
|
|
[dependencies.futures]
|
|
version = "0.3"
|
|
default-features = false
|
|
|
|
[dependencies.generic-array]
|
|
version = "0.14"
|
|
|
|
[dependencies.heapless]
|
|
version = "0.7"
|
|
|
|
[dependencies.lora-modulation]
|
|
version = ">=0.1.2"
|
|
default-features = false
|
|
|
|
[dependencies.lorawan]
|
|
version = "0.9"
|
|
default-features = false
|
|
|
|
[dependencies.rand_core]
|
|
version = "0.6"
|
|
default-features = false
|
|
|
|
[dependencies.seq-macro]
|
|
version = "0.3.5"
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ["derive"]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.lazy_static]
|
|
version = "1"
|
|
|
|
[dev-dependencies.rand]
|
|
version = "0"
|
|
features = ["getrandom"]
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "1"
|
|
features = [
|
|
"rt",
|
|
"macros",
|
|
"time",
|
|
"sync",
|
|
]
|
|
|
|
[features]
|
|
all-regions = [
|
|
"region-as923-1",
|
|
"region-as923-2",
|
|
"region-as923-3",
|
|
"region-as923-4",
|
|
"region-au915",
|
|
"region-eu433",
|
|
"region-eu868",
|
|
"region-in865",
|
|
"region-us915",
|
|
]
|
|
default = ["all-regions"]
|
|
default-crypto = ["lorawan/default-crypto"]
|
|
defmt = [
|
|
"dep:defmt",
|
|
"lorawan/defmt",
|
|
"lora-modulation/defmt",
|
|
]
|
|
embassy-time = ["dep:embassy-time"]
|
|
region-as923-1 = []
|
|
region-as923-2 = []
|
|
region-as923-3 = []
|
|
region-as923-4 = []
|
|
region-au915 = []
|
|
region-eu433 = []
|
|
region-eu868 = []
|
|
region-in865 = []
|
|
region-us915 = []
|
|
serde = [
|
|
"dep:serde",
|
|
"lorawan/serde",
|
|
]
|