egui/egui_web/Cargo.toml

46 lines
792 B
TOML
Raw Normal View History

2018-12-30 20:08:29 +00:00
[package]
2020-07-17 09:05:57 +00:00
name = "egui_web"
2018-12-30 20:08:29 +00:00
version = "0.1.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
license = "MIT OR Apache-2.0"
2018-12-30 20:08:29 +00:00
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
egui = { path = "../egui", features = ["with_serde"] }
2019-01-04 13:14:32 +00:00
js-sys = "0.3"
parking_lot = "0.11"
2018-12-30 20:08:29 +00:00
serde = "1"
serde_json = "1"
wasm-bindgen = "0.2"
2019-01-04 13:14:32 +00:00
[dependencies.web-sys]
version = "0.3"
features = [
'console',
2020-07-18 08:54:31 +00:00
'CssStyleDeclaration',
2019-01-04 13:14:32 +00:00
'Document',
'DomRect',
2019-01-04 13:14:32 +00:00
'Element',
'HtmlCanvasElement',
2020-07-18 08:54:31 +00:00
'HtmlElement',
'KeyboardEvent',
2020-07-18 08:54:31 +00:00
'Location',
'MouseEvent',
2019-01-06 15:34:01 +00:00
'Performance',
'Storage',
'Touch',
'TouchEvent',
'TouchList',
2019-01-04 13:14:32 +00:00
'WebGlBuffer',
'WebGlProgram',
'WebGlRenderingContext',
'WebGlShader',
2019-01-05 14:28:07 +00:00
'WebGlTexture',
2019-01-04 13:14:32 +00:00
'WebGlUniformLocation',
'WheelEvent',
2019-01-04 13:14:32 +00:00
'Window',
]