From 1483455630e998531c6fb9a91d90f684c65b1c62 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 9 Aug 2020 17:46:00 +0200 Subject: [PATCH] Fix some links --- demo_glium/Cargo.toml | 2 -- demo_web/Cargo.toml | 2 -- egui_glium/README.md | 2 +- egui_web/README.md | 2 +- example_glium/Cargo.toml | 2 -- 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/demo_glium/Cargo.toml b/demo_glium/Cargo.toml index 2b0ab9d4..bdb6be39 100644 --- a/demo_glium/Cargo.toml +++ b/demo_glium/Cargo.toml @@ -6,8 +6,6 @@ license = "MIT OR Apache-2.0" edition = "2018" [dependencies] -#egui = { git = "https://github.com/emilk/emigui" } egui = { path = "../egui", features = ["serde"] } -#egui_glium = { git = "https://github.com/emilk/emigui" } egui_glium = { path = "../egui_glium" } serde = { version = "1", features = ["derive"] } diff --git a/demo_web/Cargo.toml b/demo_web/Cargo.toml index d69721e2..05cb684a 100644 --- a/demo_web/Cargo.toml +++ b/demo_web/Cargo.toml @@ -9,9 +9,7 @@ edition = "2018" crate-type = ["cdylib", "rlib"] [dependencies] -# egui = { git = "https://github.com/emilk/emigui", features = ["serde"] } egui = { path = "../egui", features = ["serde"] } -# egui_web = { git = "https://github.com/emilk/emigui" } egui_web = { path = "../egui_web" } js-sys = "0.3" serde = { version = "1", features = ["derive"] } diff --git a/egui_glium/README.md b/egui_glium/README.md index 0868377c..9fa36dec 100644 --- a/egui_glium/README.md +++ b/egui_glium/README.md @@ -1,3 +1,3 @@ # egui_glium -This crates provides bindings between [Egui](crates.io/crates/egui) and [glium](https://crates.io/crates/glium) which allows you to write GUI code using Egui and compile it and run it natively, cross platform. +This crates provides bindings between [Egui](https://crates.io/crates/egui) and [glium](https://crates.io/crates/glium) which allows you to write GUI code using Egui and compile it and run it natively, cross platform. diff --git a/egui_web/README.md b/egui_web/README.md index 9170345a..380cd8f4 100644 --- a/egui_web/README.md +++ b/egui_web/README.md @@ -1,5 +1,5 @@ # egui_web -This crates allows you to compile GUI code written with [Egui](crates.io/crates/egui) to [WASM](https://en.wikipedia.org/wiki/WebAssembly) to run on a web page. +This crates allows you to compile GUI code written with [Egui](https://crates.io/crates/egui) to [WASM](https://en.wikipedia.org/wiki/WebAssembly) to run on a web page. Check out [docs/index.html](https://github.com/emilk/emigui/blob/master/docs/index.html), [demo_web](https://github.com/emilk/emigui/tree/master/demo_web) and [build_web.sh](https://github.com/emilk/emigui/blob/master/build_web.sh) for examples of how to set it up. diff --git a/example_glium/Cargo.toml b/example_glium/Cargo.toml index aecf4d13..a989b6ac 100644 --- a/example_glium/Cargo.toml +++ b/example_glium/Cargo.toml @@ -6,8 +6,6 @@ license = "MIT OR Apache-2.0" edition = "2018" [dependencies] -#egui = { git = "https://github.com/emilk/emigui" } egui = { path = "../egui" } -#egui_glium = { git = "https://github.com/emilk/emigui" } egui_glium = { path = "../egui_glium" } serde = { version = "1", features = ["derive"] }