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

Initial commit: Closed loop of TS->Rust->TS

This commit is contained in:
Emil Ernerfeldt
2018-12-23 19:42:30 +01:00
commit 856bbf4dae
14 changed files with 701 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "emgui"
version = "0.1.0"
authors = ["Emil Ernerfeldt <emilernerfeldt@gmail.com>"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
# rand = { version="0.6", features = ['wasm-bindgen'] }
serde = "1"
serde_derive = "1"
serde_json = "1"
wasm-bindgen = "0.2"
web-sys = { version = "0.3.5", features = ['console', 'Performance', 'Window'] }
# Optimize for small code size:
[profile.dev]
opt-level = "s"
[profile.release]
opt-level = "s"