From b5921d89f25a52325019a87a8570f2489f834959 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Mon, 5 May 2025 21:14:39 +0900 Subject: [PATCH] winit-core: add top-level doc --- winit-core/src/lib.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/winit-core/src/lib.rs b/winit-core/src/lib.rs index b9305a9a..358f0c3a 100644 --- a/winit-core/src/lib.rs +++ b/winit-core/src/lib.rs @@ -1,3 +1,12 @@ +//! # Core types for Winit +//! +//! Platform-agnostic types and traits useful when implementing Winit backends, +//! or otherwise interfacing with Winit from library code. +//! +//! See the [`winit`] crate for the full user-facing API. +//! +//! [`winit`]: https://docs.rs/winit + #[macro_use] pub mod as_any; pub mod cursor;