[package]
edition = "2024"
rust-version = "1.94"
name = "rfham-config"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared configuration data for RF-Ham libraries and tools."
homepage = "https://simonkjohnston.life/rust-rfham"
readme = "README.md"
keywords = [
"ham",
"radio",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/johnstonskj/rust-rfham"
[lib]
name = "rfham_config"
path = "src/lib.rs"
[dependencies.rfham-bands]
version = "0.1.1"
[dependencies.rfham-core]
version = "0.1.1"
[dependencies.rfham-geo]
version = "0.1.1"
[dependencies.rfham-itu]
version = "0.1.2"
[dependencies.rfham-maidenhead]
version = "0.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false
[dependencies.serde_with]
version = "3.18"
features = [
"alloc",
"macros",
]
default-features = false
[dependencies.thiserror]
version = "2.0"
default-features = false
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.xdirs]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1.4"
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies.wasm-bindgen-test]
version = "0.3"
[lints.clippy]
all = "warn"
[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
anonymous_parameters = "deny"
bare_trait_objects = "deny"
deref_nullptr = "deny"
drop_bounds = "deny"
dyn_drop = "deny"
elided_lifetimes_in_paths = "warn"
ellipsis_inclusive_range_patterns = "deny"
explicit_outlives_requirements = "warn"
exported_private_dependencies = "deny"
macro_use_extern_crate = "warn"
missing_debug_implementations = "warn"
noop_method_call = "warn"
rust_2021_prelude_collisions = "warn"
semicolon_in_expressions_from_macros = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unexpected_cfgs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "forbid"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.rust_2021_compatibility]
level = "warn"
priority = -1
[lints.rust.unused]
level = "warn"
priority = -1
[lints.rustdoc]
all = "warn"
broken_intra_doc_links = "warn"
missing_crate_level_docs = "warn"