From d20643702fc8650bd49c035d17763de593b88ab8 Mon Sep 17 00:00:00 2001 From: Gijs Burghoorn Date: Sun, 21 May 2023 14:08:12 +0200 Subject: [PATCH] Doc: Add small summary of crate goal in doc.rs --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index edf0b6f..1ae7d25 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,9 @@ +//! Glyphon provides a simple way to render 2D text with [wpgu], [cosmic-text] and [etagere]. +//! +//! [wpgu]: https://github.com/gfx-rs/wgpu +//! [cosmic-text]: https://github.com/pop-os/cosmic-text +//! [etagere]: https://github.com/nical/etagere + mod error; mod text_atlas; mod text_render;