diff --git a/implot-examples/README.md b/implot-examples/README.md index e3f1e0e..58290ba 100644 --- a/implot-examples/README.md +++ b/implot-examples/README.md @@ -5,9 +5,9 @@ Things are structured as follows: * [examples-shared](examples-shared/) is a library crate that contains the actual usage examples. It is used in the backend-specific crates. -* [implot-glium-examples](implot-glium-examples/) is an example for using `implot-rs` in +* [implot-glium-demo](implot-glium-demo/) is an example for using `implot-rs` in conjunction with a [Glium](https://github.com/glium/glium) backend. -* [implot-wgpu-examples](implot-wgpu-examples/) is an example for using `implot-rs` in +* [implot-wgpu-demo](implot-wgpu-demo/) is an example for using `implot-rs` in conjunction with a [WebGPU](https://github.com/gfx-rs/wgpu) backend (work in progress, this uses wgpu, but does currently not make use of `examples-shared` yet and has not been refactored to look the same as the glium example structurally) diff --git a/implot-examples/implot-wgpu-examples/Cargo.toml b/implot-examples/implot-wgpu-demo/Cargo.toml similarity index 94% rename from implot-examples/implot-wgpu-examples/Cargo.toml rename to implot-examples/implot-wgpu-demo/Cargo.toml index 11ac9d2..932ca67 100644 --- a/implot-examples/implot-wgpu-examples/Cargo.toml +++ b/implot-examples/implot-wgpu-demo/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "implot-wgpu-examples" +name = "implot-wgpu-demo" version = "0.1.0" authors = ["Benedikt Mandelkow ", "imgui-wgpu contributors"] edition = "2018" diff --git a/implot-examples/implot-wgpu-examples/src/main.rs b/implot-examples/implot-wgpu-demo/src/main.rs similarity index 100% rename from implot-examples/implot-wgpu-examples/src/main.rs rename to implot-examples/implot-wgpu-demo/src/main.rs diff --git a/implot-examples/implot-wgpu-examples/src/ui.rs b/implot-examples/implot-wgpu-demo/src/ui.rs similarity index 100% rename from implot-examples/implot-wgpu-examples/src/ui.rs rename to implot-examples/implot-wgpu-demo/src/ui.rs