19 lines
536 B
TOML
19 lines
536 B
TOML
[package]
|
|
name = "demo_web"
|
|
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 = { git = "https://github.com/emilk/emigui", features = ["with_serde"] }
|
|
egui = { path = "../egui", features = ["with_serde"] }
|
|
# egui_web = { git = "https://github.com/emilk/emigui" }
|
|
egui_web = { path = "../egui_web" }
|
|
js-sys = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
wasm-bindgen = "0.2"
|