1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 23:00:04 -04:00

Split out the Egui demo code to new crate egui_demo_lib

This commit is contained in:
Emil Ernerfeldt
2020-12-29 13:40:11 +01:00
parent 650450bc3a
commit 6953dc7d5d
31 changed files with 282 additions and 204 deletions

25
egui_demo_lib/Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "egui_demo_lib"
version = "0.6.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Example library for Egui"
edition = "2018"
homepage = "https://github.com/emilk/egui"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/emilk/egui"
categories = ["gui", "graphics"]
keywords = ["glium", "egui", "gui", "gamedev"]
include = [ "**/*.rs", "Cargo.toml"]
[lib]
[dependencies]
egui = { version = "0.6.0", path = "../egui" }
[dev-dependencies]
criterion = { version = "0.3", default-features = false }
[[bench]]
name = "benchmark"
harness = false