[package]
edition = "2024"
rust-version = "1.85"
name = "knx-device"
version = "0.1.0"
authors = ["Fabian Schmieder"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "KNX device stack — group objects, interface objects, ETS programming"
homepage = "https://github.com/metaneutrons/knx-rs"
documentation = "https://docs.rs/knx_device"
readme = "README.md"
keywords = [
"knx",
"home-automation",
"ets",
"device-stack",
"no-std",
]
categories = [
"embedded",
"no-std",
"hardware-support",
]
license = "GPL-3.0-only"
repository = "https://github.com/metaneutrons/knx-rs"
resolver = "2"
[features]
default = ["std"]
std = ["knx-core/std"]
[lib]
name = "knx_device"
path = "src/lib.rs"
[dependencies.knx-core]
version = "0.1.0"
default-features = false
[lints.clippy]
expect_used = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
unwrap_used = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
unused_qualifications = "warn"