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

[egui] make serde an optional dependency

This commit is contained in:
Emil Ernerfeldt
2020-05-30 11:04:40 +02:00
parent fd5ab736bb
commit b80baf4039
28 changed files with 126 additions and 109 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "example_wasm"
version = "0.1.0"
authors = ["Emil Ernerfeldt <emilernerfeldt@gmail.com>"]
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
@@ -9,8 +9,7 @@ edition = "2018"
crate-type = ["cdylib", "rlib"]
[dependencies]
serde = "1"
serde_derive = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
wasm-bindgen = "0.2"