2018-12-30 20:08:29 +00:00
|
|
|
[package]
|
2020-05-30 08:22:35 +00:00
|
|
|
name = "egui"
|
2020-10-10 12:00:07 +00:00
|
|
|
version = "0.2.0"
|
2020-05-30 16:22:33 +00:00
|
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
|
|
description = "Simple, portable immediate mode GUI library for Rust"
|
2018-12-30 20:08:29 +00:00
|
|
|
edition = "2018"
|
2020-08-10 17:38:46 +00:00
|
|
|
homepage = "https://github.com/emilk/egui"
|
2020-05-30 16:22:33 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "../README.md"
|
2020-08-10 17:38:46 +00:00
|
|
|
repository = "https://github.com/emilk/egui"
|
2020-05-30 16:22:33 +00:00
|
|
|
categories = ["gui", "graphics"]
|
|
|
|
keywords = ["gui", "imgui", "immediate", "portable", "gamedev"]
|
2020-10-29 10:48:39 +00:00
|
|
|
include = [
|
|
|
|
"**/*.rs",
|
|
|
|
"Cargo.toml",
|
|
|
|
"fonts/ProggyClean.ttf",
|
|
|
|
"fonts/Comfortaa-Regular.ttf",
|
|
|
|
]
|
2018-12-30 20:08:29 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-07 13:35:42 +00:00
|
|
|
# Can't upgrade ahash until we can use it within wasmtime (https://github.com/tkaitchuck/aHash/issues/59)
|
|
|
|
ahash = { version = "0.4", features = ["std"], default-features = false }
|
2020-07-17 07:45:28 +00:00
|
|
|
parking_lot = "0.11"
|
2020-04-24 17:07:33 +00:00
|
|
|
rusttype = "0.9"
|
2020-05-30 09:04:40 +00:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2020-07-23 16:54:16 +00:00
|
|
|
serde_json = { version = "1", optional = true }
|
2020-05-30 09:04:40 +00:00
|
|
|
|
2020-05-20 19:20:39 +00:00
|
|
|
[dev-dependencies]
|
2020-05-24 09:36:24 +00:00
|
|
|
criterion = { version = "0.3", default-features = false }
|
2020-05-20 19:20:39 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "benchmark"
|
|
|
|
harness = false
|