Point crate repository & homepage urls to their subfolders
This commit is contained in:
parent
71d18ba3e7
commit
3b75a84d3b
8 changed files with 25 additions and 19 deletions
|
@ -4,10 +4,10 @@ version = "0.14.0"
|
|||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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 = [
|
||||
|
|
|
@ -4,10 +4,10 @@ version = "0.14.0"
|
|||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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 = [
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
# egui demo library
|
||||
# [`egui`](https://github.com/emilk/egui) demo library
|
||||
|
||||
this crate contains example code for egui.
|
||||
[](https://crates.io/crates/egui_demo_lib)
|
||||
[](https://docs.rs/egui_demo_lib)
|
||||
[](https://github.com/rust-secure-code/safety-dance/)
|
||||

|
||||

|
||||
|
||||
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.
|
||||
|
|
|
@ -4,10 +4,10 @@ version = "0.14.0"
|
|||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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 = [
|
||||
|
|
|
@ -5,9 +5,9 @@ authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|||
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 = [
|
||||
|
|
|
@ -4,10 +4,10 @@ version = "0.14.0"
|
|||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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 = [
|
||||
|
|
|
@ -4,10 +4,10 @@ version = "0.14.0"
|
|||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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 = [
|
||||
|
|
|
@ -4,10 +4,10 @@ version = "0.14.0"
|
|||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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 = [
|
||||
|
|
Loading…
Reference in a new issue