# 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" name = "lorawan" version = "0.9.0" authors = ["Ivaylo Petrov "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Crate lorawan provides structures and tools for reading and writing LoRaWAN messages from and to a slice of bytes." readme = "README.md" keywords = [ "lorawan", "iot", "lpwan", "parser", "lightweight", ] license = "MIT" repository = "https://github.com/lora-rs/lora-rs" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "lorawan" path = "src/lib.rs" [[test]] name = "lorawan" path = "tests/lorawan.rs" [[test]] name = "maccommandcreator" path = "tests/maccommandcreator.rs" [[test]] name = "maccommands" path = "tests/maccommands.rs" [[test]] name = "packet_length" path = "tests/packet_length.rs" [[bench]] name = "lorawan" path = "benches/lorawan.rs" harness = false [dependencies.aes] version = "0.8" optional = true [dependencies.cmac] version = "0.7" optional = true [dependencies.defmt] version = "0.3" optional = true [dependencies.generic-array] version = "0" [dependencies.hex] version = "0" default-features = false [dependencies.serde] version = "1" features = ["derive"] optional = true default-features = false [dev-dependencies.criterion] version = "0" [dev-dependencies.heapless] version = "0" [dev-dependencies.trallocator] version = "0.2.1" [features] default = ["full"] default-crypto = [ "aes", "cmac", ] defmt = ["dep:defmt"] full = [ "with-to-string", "default-crypto", "serde", "defmt", ] serde = ["dep:serde"] with-to-string = []