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.
18 lines
497 B
18 lines
497 B
[package]
|
|
name = "egui_demo_app"
|
|
version = "0.1.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
eframe = { version = "0.7.0", path = "../eframe", features = ["time"] }
|
|
egui_demo_lib = { version = "0.7.0", path = "../egui_demo_lib" }
|
|
|
|
[features]
|
|
default = ["persistence"]
|
|
http = ["eframe/http", "egui_demo_lib/http"]
|
|
persistence = ["eframe/persistence", "egui_demo_lib/persistence"]
|
|
|