-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Point crate repository & homepage urls to their subfolders
- Loading branch information
Showing
8 changed files
with
25 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ version = "0.14.0" | |
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "egui framework - write GUI apps that compiles to web and/or natively" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/eframe" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/eframe" | ||
categories = ["gui", "game-development"] | ||
keywords = ["egui", "gui", "gamedev"] | ||
include = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ version = "0.14.0" | |
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Example library for egui" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/egui_demo_lib" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/egui_demo_lib" | ||
categories = ["gui", "graphics"] | ||
keywords = ["glium", "egui", "gui", "gamedev"] | ||
include = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
# egui demo library | ||
# [`egui`](https://github.com/emilk/egui) demo library | ||
|
||
this crate contains example code for egui. | ||
[![Latest version](https://img.shields.io/crates/v/egui_demo_lib.svg)](https://crates.io/crates/egui_demo_lib) | ||
[![Documentation](https://docs.rs/egui_demo_lib/badge.svg)](https://docs.rs/egui_demo_lib) | ||
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/) | ||
![MIT](https://img.shields.io/badge/license-MIT-blue.svg) | ||
![Apache](https://img.shields.io/badge/license-Apache-blue.svg) | ||
|
||
it is in a separate crate for two reasons: | ||
This crate contains example code for [`egui`](https://github.com/emilk/egui). | ||
|
||
* to ensure it only uses the public `egui` api. | ||
* to remove the amount of code in `egui` proper. | ||
It is in a separate crate for two reasons: | ||
|
||
* To ensure it only uses the public `egui` api. | ||
* To remove the amount of code in `egui` proper. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ version = "0.14.0" | |
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui natively using the glium library" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/egui_glium" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/egui_glium" | ||
categories = ["gui", "game-development"] | ||
keywords = ["glium", "egui", "gui", "gamedev"] | ||
include = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ authors = ["Emil Ernerfeldt <[email protected]>"] | |
description = "Bindings for compiling egui code to WASM for a web page" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/egui_web" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/egui_web" | ||
categories = ["gui", "web-programming"] | ||
keywords = ["wasm", "web", "egui", "gui", "gamedev"] | ||
include = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ version = "0.14.0" | |
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Minimal 2D math library for GUI work" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/emath" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/emath" | ||
categories = ["mathematics", "gui"] | ||
keywords = ["math", "gui"] | ||
include = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ version = "0.14.0" | |
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Minimal 2D graphics library for GUI work" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/epaint" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/epaint" | ||
categories = ["graphics", "gui"] | ||
keywords = ["graphics", "gui", "egui"] | ||
include = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ version = "0.14.0" | |
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Backend-agnostic interface for writing apps using egui" | ||
edition = "2018" | ||
homepage = "https://github.com/emilk/egui" | ||
homepage = "https://github.com/emilk/egui/tree/master/epi" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emilk/egui" | ||
repository = "https://github.com/emilk/egui/tree/master/epi" | ||
categories = ["gui", "game-development"] | ||
keywords = ["egui", "gui", "gamedev"] | ||
include = [ | ||
|