From 7e302ad90521b17a8965ee39efc12633f0ceb1d0 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 21 Mar 2021 16:00:24 +0100 Subject: [PATCH] Document the need for latest rustc Closes https://github.com/emilk/egui/issues/240 --- egui/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/egui/src/lib.rs b/egui/src/lib.rs index 2ac4838d..83c66460 100644 --- a/egui/src/lib.rs +++ b/egui/src/lib.rs @@ -2,6 +2,9 @@ //! //! Try the live web demo: . Read more about egui at . //! +//! `egui` is in heavy development, with each new version having breaking changes. +//! You need to have the latest stable version of `rustc` to use `egui`. +//! //! To quickly get started with egui, you can take a look at [`egui_template`](https://github.com/emilk/egui_template) //! which uses [`eframe`](https://docs.rs/eframe). //!