1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 21:30:03 -04:00

Break into two crates

This commit is contained in:
Emil Ernerfeldt
2018-12-30 21:08:29 +01:00
parent 25d049ae35
commit bfa20be28e
14 changed files with 67 additions and 49 deletions

17
emgui_wasm/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "emgui_wasm"
version = "0.1.0"
authors = ["Emil Ernerfeldt <emilernerfeldt@gmail.com>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
lazy_static = "1"
serde = "1"
serde_json = "1"
wasm-bindgen = "0.2"
# web-sys = { version = "0.3.5", features = ['console', 'Performance', 'Window'] }
emgui = { path = "../emgui" }