mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 06:40:06 -04:00
Combine demo_glium and demo_web into one egui_demo crate
This commit is contained in:
23
egui_demo/Cargo.toml
Normal file
23
egui_demo/Cargo.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
[package]
|
||||
name = "egui_demo"
|
||||
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]
|
||||
egui = { path = "../egui", features = ["serde", "serde_json"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
# For compiling natively:
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
egui_glium = { path = "../egui_glium" }
|
||||
|
||||
# For compiling to web:
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
egui_web = { path = "../egui_web" }
|
||||
js-sys = "0.3"
|
||||
wasm-bindgen = "0.2"
|
||||
Reference in New Issue
Block a user