# 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 = "2021" name = "win_binder" version = "0.1.0" authors = ["0xJWLabs <0xJWLabs@gmail.com>"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Listen and send keyboard and mouse events on Windows" homepage = "https://github.com/0xJWLabs/win_binder" documentation = "https://docs.rs/win_binder/" readme = "README.md" keywords = [ "input", "mouse", "keyboard", "automation", "windows", ] categories = [ "api-bindings", "hardware-support", ] license = "MIT" repository = "https://github.com/0xJWLabs/win_binder" [lib] name = "win_binder" path = "src/lib.rs" [[example]] name = "channel" path = "examples/channel.rs" [[example]] name = "display" path = "examples/display.rs" [[example]] name = "grab" path = "examples/grab.rs" required-features = ["unstable_grab"] [[example]] name = "keyboard_state" path = "examples/keyboard_state.rs" [[example]] name = "listen" path = "examples/listen.rs" [[example]] name = "serialize" path = "examples/serialize.rs" required-features = ["serialize"] [[example]] name = "simulate" path = "examples/simulate.rs" [[example]] name = "tokio_channel" path = "examples/tokio_channel.rs" required-features = ["unstable_grab"] [[test]] name = "grab" path = "tests/grab.rs" required-features = ["unstable_grab"] [[test]] name = "listen_and_simulate" path = "tests/listen_and_simulate.rs" [dependencies.serde] version = "1.0.215" features = ["derive"] optional = true [dependencies.windows] version = "0.58.0" features = [ "Win32_Foundation", "Foundation_Numerics", "Win32_System_Threading", "Win32_UI_Input_KeyboardAndMouse", "Win32_UI_WindowsAndMessaging", ] [dev-dependencies.serde_json] version = "1.0.133" [dev-dependencies.serial_test] version = "3.2.0" [dev-dependencies.tokio] version = "1.41.1" features = [ "sync", "macros", "rt-multi-thread", ] [features] serialize = ["serde"] unstable_grab = []