├── .changes ├── config.json ├── msrv.md └── readme.md ├── .github └── workflows │ ├── audit.yml │ ├── clippy-fmt.yml │ ├── covector-status.yml │ ├── covector-version-or-publish.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE.spdx ├── README.md ├── examples ├── egui.rs ├── iced.rs ├── tao.rs └── winit.rs ├── renovate.json └── src ├── error.rs ├── hotkey.rs ├── lib.rs └── platform_impl ├── macos ├── ffi.rs └── mod.rs ├── mod.rs ├── no-op.rs ├── windows └── mod.rs └── x11 └── mod.rs /.changes/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.changes/config.json -------------------------------------------------------------------------------- /.changes/msrv.md: -------------------------------------------------------------------------------- 1 | --- 2 | global-hotkey: minor 3 | --- 4 | 5 | Increased MSRV to `1.77`. 6 | -------------------------------------------------------------------------------- /.changes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.changes/readme.md -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/clippy-fmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.github/workflows/clippy-fmt.yml -------------------------------------------------------------------------------- /.github/workflows/covector-status.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.github/workflows/covector-status.yml -------------------------------------------------------------------------------- /.github/workflows/covector-version-or-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.github/workflows/covector-version-or-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.vscode -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/LICENSE.spdx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/README.md -------------------------------------------------------------------------------- /examples/egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/examples/egui.rs -------------------------------------------------------------------------------- /examples/iced.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/examples/iced.rs -------------------------------------------------------------------------------- /examples/tao.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/examples/tao.rs -------------------------------------------------------------------------------- /examples/winit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/examples/winit.rs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/renovate.json -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/hotkey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/hotkey.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/platform_impl/macos/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/platform_impl/macos/ffi.rs -------------------------------------------------------------------------------- /src/platform_impl/macos/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/platform_impl/macos/mod.rs -------------------------------------------------------------------------------- /src/platform_impl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/platform_impl/mod.rs -------------------------------------------------------------------------------- /src/platform_impl/no-op.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/platform_impl/no-op.rs -------------------------------------------------------------------------------- /src/platform_impl/windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/platform_impl/windows/mod.rs -------------------------------------------------------------------------------- /src/platform_impl/x11/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/global-hotkey/HEAD/src/platform_impl/x11/mod.rs --------------------------------------------------------------------------------