[package]
edition = "2024"
rust-version = "1.85"
name = "openlogi-core"
version = "0.1.3"
authors = ["AprilNEA <dev@aprilnea.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, config, and paths for OpenLogi. No I/O specifics."
readme = false
keywords = [
"logitech",
"hidpp",
"config",
"mouse",
"hid",
]
categories = [
"hardware-support",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AprilNEA/OpenLogi"
[lib]
name = "openlogi_core"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.10"
features = ["link"]
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.core-graphics]
version = "0.25.0"
features = ["highsierra"]
[lints.clippy]
doc_markdown = "allow"
expect_used = "warn"
missing_errors_doc = "allow"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"