keyflow 0.1.1

Cross-platform input simulation library for keyboard, mouse and hotkeys.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "keyflow"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform input simulation library for keyboard, mouse and hotkeys."
homepage = "https://github.com/Fenrir2775/keyflow"
documentation = "https://docs.rs/keyflow"
readme = "README.md"
keywords = [
    "input",
    "keyboard",
    "mouse",
    "automation",
    "simulation",
]
categories = [
    "api-bindings",
    "hardware-support",
    "os",
    "simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Fenrir2775/keyflow"

[features]
default = []
serde = ["dep:serde"]

[lib]
name = "keyflow"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "batch"
path = "examples/batch.rs"

[[example]]
name = "helper"
path = "examples/helper.rs"

[[example]]
name = "hotkeys"
path = "examples/hotkeys.rs"

[[example]]
name = "multi_monitor"
path = "examples/multi_monitor.rs"

[[example]]
name = "serde_config"
path = "examples/serde_config.rs"

[dependencies.crossbeam-channel]
version = "0.5.15"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true

[dependencies.smallvec]
version = "1.15.1"

[dependencies.strum]
version = "0.28.0"

[dependencies.strum_macros]
version = "0.28.0"

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0.149"

[target.'cfg(target_os = "linux")'.dependencies.evdev]
version = "0.13.2"

[target.'cfg(target_os = "linux")'.dependencies.nix]
version = "0.31.1"
features = ["event"]

[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
    "Win32_Foundation",
    "Win32_UI_Input_KeyboardAndMouse",
    "Win32_UI_WindowsAndMessaging",
]