donglora-client 1.1.0

DongLoRa host library — connect, configure, send/receive LoRa packets (DongLoRa Protocol v2)
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "donglora-client"
version = "1.1.0"
authors = ["Stephen Waits <steve@waits.net>"]
build = false
exclude = [
    "CLAUDE_TODO.md",
    "deny.toml",
    "justfile",
    "mise.toml",
    "rustfmt.toml",
    ".jj",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DongLoRa host library — connect, configure, send/receive LoRa packets (DongLoRa Protocol v2)"
homepage = "https://github.com/donglora/client-rs"
readme = "README.md"
keywords = [
    "lora",
    "radio",
    "usb",
    "serial",
]
categories = ["hardware-support"]
license = "MIT"
repository = "https://github.com/donglora/client-rs"

[lib]
name = "donglora_client"
path = "src/lib.rs"

[[example]]
name = "ping"
path = "examples/ping.rs"
required-features = []

[[example]]
name = "rx"
path = "examples/rx.rs"
required-features = []

[[example]]
name = "tx"
path = "examples/tx.rs"
required-features = []

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

[dependencies.donglora-protocol]
version = "1"
features = ["std"]
default-features = false

[dependencies.rand]
version = "0.9"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
    "io-util",
    "net",
]

[dependencies.tokio-serial]
version = "5"

[dependencies.tokio-stream]
version = "0.1"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.donglora-protocol]
version = "1"
features = ["std"]
default-features = false

[dev-dependencies.heapless]
version = "0.9"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
    "io-util",
    "net",
    "test-util",
]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"