Winit with DWMWA_CLOAK https://docs.rs/winit/
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-24 17:03:24 +02:00
.cargo Use Taplo for TOML formatting 2024-07-28 17:38:44 +02:00
.github Fix CI 2026-06-24 16:58:57 +02:00
dpi Reduce duplication in dpi module (#2148) 2026-02-17 15:45:53 +01:00
winit macOS: make Ime::Preedit cursor range surrogate-safe in setMarkedText 2026-06-20 01:34:43 +09:00
winit-android Android: Add further scancode conversions (#4023) 2026-03-19 02:27:23 +01:00
winit-appkit Fix AppKit live resize redraw timing 2026-06-24 17:03:24 +02:00
winit-common Remove symlinking between winit-appkit and winit-uikit (#4530) 2026-03-26 05:49:12 +01:00
winit-core winit-wayland: add pointer gesture hold 2026-06-13 02:36:23 +09:00
winit-orbital Add missing scancodes for orbital (#4515) 2026-03-17 03:29:27 +01:00
winit-uikit Remove symlinking between winit-appkit and winit-uikit (#4530) 2026-03-26 05:49:12 +01:00
winit-wayland winit-wayland: add pointer gesture hold 2026-06-13 02:36:23 +09:00
winit-web fix(typo): dependant -> dependent (#4540) 2026-03-24 15:54:31 +01:00
winit-win32 windows: fix freeze on keyboard layout switch 2026-06-15 03:29:35 +09:00
winit-x11 winit-x11: fix clippy lint 2026-06-05 02:25:58 +09:00
.git-blame-ignore-revs Add to .git-blame-ignore-revs file 2024-07-28 17:39:04 +02:00
.gitattributes Update changelog guidelines to prevent conflicts from blocking PRs (#2145) 2022-01-23 13:55:33 +01:00
.gitignore Move to TypeScript (#3830) 2024-07-27 18:26:52 +02:00
Cargo.toml Update to softbuffer v0.4.8 2026-03-17 04:34:15 +01:00
CHANGELOG.md Move winit itself to crate 2025-06-07 13:07:12 +09:00
clippy.toml examples: Use tracing macros instead of println! 2026-03-18 22:55:47 +01:00
CODE_OF_CONDUCT.md docs: add a code of conduct 2024-03-07 17:32:06 +04:00
CONTRIBUTING.md chore: make git checkout build on Windows with symlinks disabled 2025-06-10 07:37:36 +09:00
deny.toml Clean up cargo-deny 2026-03-28 10:28:31 +09:00
examples winit-core/ime: add more purposes and content hints 2025-09-06 13:27:55 +09:00
FEATURES.md Remove feature description in FEATURES.md (#3479) 2024-12-03 21:24:57 +01:00
HALL_OF_CHAMPIONS.md Changes and improvements to the documentation (#3253) 2023-12-03 18:39:08 +01:00
LICENSE Initial commit 2014-07-27 11:41:26 +02:00
README.md Bump version on master 2025-11-17 15:45:12 +09:00
rustfmt.toml Use Taplo for TOML formatting 2024-07-28 17:38:44 +02:00
taplo.toml Use Taplo for TOML formatting 2024-07-28 17:38:44 +02:00
typos.toml Add safe area and document coordinate systems (#3890) 2024-11-21 17:37:03 +01:00

winit - Cross-platform window creation and management in Rust

Crates.io Docs.rs UNSTABLE docs CI Status

[dependencies]
winit = "0.31.0-beta.2"

Documentation

For features within the scope of winit, see FEATURES.md.

For features outside the scope of winit, see Are we GUI Yet? and Are we game yet?, depending on what kind of project you're looking to do.

Contact Us

Join us in our Matrix room.

The maintainers have a meeting every friday at UTC 15. The meeting notes can be found here.

Usage

Winit is a window creation and management library. It can create windows and lets you handle events (for example: the window being resized, a key being pressed, a mouse movement, etc.) produced by the window.

Winit is designed to be a low-level brick in a hierarchy of libraries. Consequently, in order to show something on the window you need to use the platform-specific getters provided by winit, or another library.

CONTRIBUTING

For contributing guidelines see CONTRIBUTING.md.

MSRV Policy

This crate's Minimum Supported Rust Version (MSRV) is 1.85. Changes to the MSRV will be accompanied by a minor version bump.

As a tentative policy, the upper bound of the MSRV is given by the following formula:

min(sid, stable - 3)

Where sid is the current version of rustc provided by Debian Sid, and stable is the latest stable version of Rust. This bound may be broken in case of a major ecosystem shift or a security vulnerability.

An exception is made for the Android platform, where a higher Rust version must be used for certain Android features. In this case, the MSRV will be capped at the latest stable version of Rust minus three. This inconsistency is not reflected in Cargo metadata, as it is not powerful enough to expose this restriction.

Redox OS is also not covered by this MSRV policy, as it requires a Rust nightly toolchain to compile.

All crates in the rust-windowing organizations have the same MSRV policy.

Platform-specific usage

Check out the winit::platform module for platform-specific usage.

Repository License

Note that the license in LICENSE doesn't apply in full to the DPI package ./dpi. Full details can be found in that folder's README.