35 lines
1,007 B
TOML
35 lines
1,007 B
TOML
[package]
|
|
name = "egui"
|
|
version = "0.3.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "Simple, portable immediate mode GUI library for Rust"
|
|
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 = ["gui", "imgui", "immediate", "portable", "gamedev"]
|
|
include = [
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
"fonts/ProggyClean.ttf",
|
|
"fonts/Comfortaa-Regular.ttf",
|
|
]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
# 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 }
|
|
parking_lot = "0.11"
|
|
rusttype = "0.9"
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3", default-features = false }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|