[package]
edition = "2021"
rust-version = "1.88"
name = "rtcom-config"
version = "0.2.1"
authors = ["TrekMax"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Profile persistence for rtcom, the Rust terminal communication tool."
readme = "README.md"
keywords = [
"serial",
"terminal",
"config",
"profile",
"rtcom",
]
categories = [
"config",
"hardware-support",
]
license = "Apache-2.0"
repository = "https://github.com/TrekMax/rtcom"
[lib]
name = "rtcom_config"
path = "src/lib.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[dependencies.directories]
version = "5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"