Fix some links
This commit is contained in:
parent
d35be05731
commit
1483455630
5 changed files with 2 additions and 8 deletions
|
@ -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"] }
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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"] }
|
||||
|
|
Loading…
Reference in a new issue