26 lines
662 B
TOML
26 lines
662 B
TOML
[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" }
|
|
epi = { version = "0.6.0", path = "../epi" }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3", default-features = false }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|