[package]
edition = "2021"
name = "keypeat"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Generic, std-only key repetition handling for Rust.
"""
homepage = "https://github.com/d-e-s-o/keypeat"
documentation = "https://docs.rs/keypeat"
readme = "README.md"
keywords = [
"keys",
"input",
"repeat",
"winit",
"notification",
]
categories = [
"accessibility",
"algorithms",
"api-bindings",
"command-line-utilities",
"gui",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/d-e-s-o/keypeat.git"
[lib]
name = "keypeat"
path = "src/lib.rs"
[[example]]
name = "winit-phys-events"
path = "examples/winit-phys-events.rs"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.winit]
version = "0.30"
[lints.clippy]
absolute-paths = "warn"
allow-attributes = "warn"
clone-on-ref-ptr = "warn"
collapsible-else-if = "allow"
collapsible-if = "allow"
dbg-macro = "warn"
derive-partial-eq-without-eq = "warn"
diverging-sub-expression = "allow"
doc-markdown = "warn"
join-absolute-paths = "warn"
large-enum-variant = "warn"
let-and-return = "allow"
let-unit-value = "allow"
module-inception = "allow"
redundant-closure-for-method-calls = "warn"
type-complexity = "allow"
unchecked-time-subtraction = "warn"
uninlined-format-args = "warn"
wildcard-imports = "warn"
[lints.rust]
deprecated-safe = "warn"
future-incompatible = "warn"
keyword-idents = "warn"
let-underscore = "warn"
missing-debug-implementations = "warn"
missing-docs = "warn"
trivial-numeric-casts = "warn"
unsafe-op-in-unsafe-fn = "warn"
unused = "warn"