[package]
edition = "2021"
rust-version = "1.90"
name = "prns-config"
version = "0.3.4"
build = false
include = [
"src/**",
"tests/**",
"!tests/**/__pycache__/**",
"!tests/**/*.pyc",
"examples/**",
"Cargo.toml",
"README.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Config discovery, parsing, and reconciliation for the Personal Reticulum daemon"
homepage = "https://reticulum.rs"
documentation = "https://docs.rs/prns-config"
readme = "README.md"
keywords = [
"reticulum",
"mesh",
"networking",
"configuration",
]
categories = [
"config",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KenAKAFrosty/Prns"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "prns_config"
path = "src/lib.rs"
[[test]]
name = "discovery_archive_configuration"
path = "tests/discovery_archive_configuration.rs"
[[test]]
name = "parser_properties"
path = "tests/parser_properties.rs"
[dependencies.home]
version = "0.5.12"
[dependencies.prns-core]
version = "=0.3.4"
features = [
"interface-discovery",
"std",
]
default-features = false
[dependencies.shlex]
version = "1"
[dependencies.tempfile]
version = "3.27"
[dev-dependencies.prns-core]
version = "=0.3.4"
features = ["interface-discovery-archive"]
default-features = false
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"