From fa31f63da105adb478d078d5d7edadf71eab8f4a Mon Sep 17 00:00:00 2001 From: Burrdi Date: Mon, 1 Jun 2026 19:05:27 +1000 Subject: [PATCH] Fix broken relative README links on crates.io The README is published from the repo root but crates.io resolves relative links against the crate manifest dir (egui_plot/), producing 404s. Use absolute github.com/.../blob/main/ URLs instead. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dd79de48..bb1e8f79 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Immediate mode 2D plotting library for [`egui`](https://crates.io/crates/https:/ ## Plotting libraries in Rust -To view a list of plotting libraries in Rust, see [notes on Rust plotting ecosystem](ECOSYSTEM.md). +To view a list of plotting libraries in Rust, see [notes on Rust plotting ecosystem](https://github.com/emilk/egui_plot/blob/main/ECOSYSTEM.md). ## Contributing -Please see [CONTRIBUTING.md](CONTRIBUTING.md) and [WELCOME_CONTRIBUTIONS.md](WELCOME_CONTRIBUTIONS.md) +Please see [CONTRIBUTING.md](https://github.com/emilk/egui_plot/blob/main/CONTRIBUTING.md) and [WELCOME_CONTRIBUTIONS.md](https://github.com/emilk/egui_plot/blob/main/WELCOME_CONTRIBUTIONS.md) ## History