2019-02-09 22:00:07 +00:00
|
|
|
[package]
|
2020-12-29 16:54:52 +00:00
|
|
|
name = "egui_demo_app"
|
2022-02-22 18:32:30 +00:00
|
|
|
version = "0.17.0"
|
2020-05-30 09:04:40 +00:00
|
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
2020-05-26 13:07:31 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-25 18:32:25 +00:00
|
|
|
edition = "2021"
|
2022-04-09 11:54:47 +00:00
|
|
|
rust-version = "1.60"
|
2021-01-17 14:16:00 +00:00
|
|
|
publish = false
|
2019-02-09 22:00:07 +00:00
|
|
|
|
2022-02-05 10:11:15 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
2019-02-09 22:00:07 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
2022-02-05 10:11:15 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["persistence"]
|
|
|
|
http = ["egui_demo_lib/http"]
|
|
|
|
persistence = ["eframe/persistence", "egui_demo_lib/persistence"]
|
2022-03-10 13:25:33 +00:00
|
|
|
screen_reader = ["eframe/screen_reader"] # experimental
|
2022-02-05 10:11:15 +00:00
|
|
|
syntax_highlighting = ["egui_demo_lib/syntax_highlighting"]
|
|
|
|
|
|
|
|
|
2019-02-09 22:00:07 +00:00
|
|
|
[dependencies]
|
2022-02-22 18:32:30 +00:00
|
|
|
eframe = { version = "0.17.0", path = "../eframe" }
|
2021-12-31 14:17:55 +00:00
|
|
|
|
|
|
|
# To use the old glium backend instead:
|
2022-02-22 18:32:30 +00:00
|
|
|
# eframe = { version = "0.17.0", path = "../eframe", default-features = false, features = ["default_fonts", "egui_glium"] }
|
2021-10-19 19:40:55 +00:00
|
|
|
|
2022-03-10 13:25:33 +00:00
|
|
|
egui_demo_lib = { version = "0.17.0", path = "../egui_demo_lib", features = [
|
|
|
|
"extra_debug_asserts",
|
|
|
|
] }
|
2022-02-01 11:27:39 +00:00
|
|
|
tracing-subscriber = "0.3"
|
2022-02-10 14:44:41 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
console_error_panic_hook = "0.1.6"
|
2022-02-22 18:32:30 +00:00
|
|
|
tracing-wasm = "0.2"
|