mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
[package]
|
|
name = "egui_demo_lib"
|
|
version = "0.17.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "Example library for egui"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
homepage = "https://github.com/emilk/egui/tree/master/egui_demo_lib"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui/tree/master/egui_demo_lib"
|
|
categories = ["gui", "graphics"]
|
|
keywords = ["glium", "egui", "gui", "gamedev"]
|
|
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
|
|
|
|
[features]
|
|
default = ["datetime"]
|
|
|
|
# Enable additional checks if debug assertions are enabled (debug builds).
|
|
extra_debug_asserts = ["egui/extra_debug_asserts"]
|
|
# Always enable additional checks.
|
|
extra_asserts = ["egui/extra_asserts"]
|
|
|
|
datetime = ["egui_extras/chrono", "chrono"]
|
|
http = ["egui_extras", "ehttp", "image", "poll-promise"]
|
|
persistence = [
|
|
"egui/persistence",
|
|
"epi/persistence",
|
|
"egui_extras/persistence",
|
|
"serde",
|
|
]
|
|
serialize = ["egui/serialize", "serde"]
|
|
syntax_highlighting = ["syntect"]
|
|
|
|
|
|
[dependencies]
|
|
egui = { version = "0.17.0", path = "../egui", default-features = false }
|
|
epi = { version = "0.17.0", path = "../epi" }
|
|
|
|
chrono = { version = "0.4", optional = true, features = ["js-sys", "wasmbind"] }
|
|
enum-map = { version = "2", features = ["serde"] }
|
|
tracing = "0.1"
|
|
unicode_names2 = { version = "0.5.0", default-features = false }
|
|
|
|
# feature "http":
|
|
egui_extras = { version = "0.17.0", path = "../egui_extras", optional = true, features = [
|
|
"image",
|
|
"datepicker",
|
|
] }
|
|
ehttp = { version = "0.2.0", optional = true }
|
|
image = { version = "0.24", optional = true, default-features = false, features = [
|
|
"jpeg",
|
|
"png",
|
|
] }
|
|
poll-promise = { version = "0.1", optional = true, default-features = false }
|
|
|
|
# feature "syntax_highlighting":
|
|
syntect = { version = "4", optional = true, default-features = false, features = [
|
|
"default-fancy",
|
|
] }
|
|
|
|
# feature "persistence":
|
|
serde = { version = "1", optional = true, features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3", default-features = false }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|
|
|