├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-MIT ├── README.md ├── examples ├── autoclicker.rs ├── bind_all.rs ├── blockable_binds.rs ├── key_sequences.rs ├── move_mouse.rs └── serde.rs ├── flake.nix └── src ├── common.rs ├── lib.rs ├── linux ├── inputs.rs └── mod.rs ├── public.rs └── windows ├── inputs.rs └── mod.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/README.md -------------------------------------------------------------------------------- /examples/autoclicker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/examples/autoclicker.rs -------------------------------------------------------------------------------- /examples/bind_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/examples/bind_all.rs -------------------------------------------------------------------------------- /examples/blockable_binds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/examples/blockable_binds.rs -------------------------------------------------------------------------------- /examples/key_sequences.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/examples/key_sequences.rs -------------------------------------------------------------------------------- /examples/move_mouse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/examples/move_mouse.rs -------------------------------------------------------------------------------- /examples/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/examples/serde.rs -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/flake.nix -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/linux/inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/linux/inputs.rs -------------------------------------------------------------------------------- /src/linux/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/linux/mod.rs -------------------------------------------------------------------------------- /src/public.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/public.rs -------------------------------------------------------------------------------- /src/windows/inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/windows/inputs.rs -------------------------------------------------------------------------------- /src/windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obv-mikhail/InputBot/HEAD/src/windows/mod.rs --------------------------------------------------------------------------------