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.
38 lines
1.0 KiB
38 lines
1.0 KiB
[package]
|
|
name = "egui_demo_app"
|
|
version = "0.17.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
[features]
|
|
default = ["persistence"]
|
|
http = ["egui_demo_lib/http"]
|
|
persistence = ["eframe/persistence", "egui_demo_lib/persistence"]
|
|
screen_reader = ["eframe/screen_reader"] # experimental
|
|
syntax_highlighting = ["egui_demo_lib/syntax_highlighting"]
|
|
|
|
|
|
[dependencies]
|
|
eframe = { version = "0.17.0", path = "../eframe" }
|
|
|
|
# To use the old glium backend instead:
|
|
# eframe = { version = "0.17.0", path = "../eframe", default-features = false, features = ["default_fonts", "egui_glium"] }
|
|
|
|
egui_demo_lib = { version = "0.17.0", path = "../egui_demo_lib", features = [
|
|
"extra_debug_asserts",
|
|
] }
|
|
tracing-subscriber = "0.3"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook = "0.1.6"
|
|
tracing-wasm = "0.2"
|
|
|