[package]
name = "epaint"
version = "0.10.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Minimal 2D graphics library for GUI work"
edition = "2018"
homepage = "https://github.com/emilk/egui"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/emilk/egui"
categories = ["graphics", "gui"]
keywords = ["graphics", "gui", "egui"]
include = [
"**/*.rs",
"Cargo.toml",
"fonts/*.ttf",
]
[lib]
[dependencies]
emath = { version = "0.10.0", path = "../emath" }
ahash = { version = "0.7", features = ["std"], default-features = false }
atomic_refcell = { version = "0.1", optional = true }
parking_lot = { version = "0.11", optional = true }
rusttype = "0.9"
serde = { version = "1", features = ["derive"], optional = true }
[features]
default = ["multi_threaded", "default_fonts"]
persistence = ["serde", "emath/serde"]
default_fonts = []
single_threaded = ["atomic_refcell"]
multi_threaded = ["parking_lot"]