iced-yoda/examples/integration/Cargo.toml

26 lines
644 B
TOML
Raw Normal View History

[package]
name = "integration"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
publish = false
[dependencies]
iced_winit.workspace = true
iced_wgpu.workspace = true
iced_widget.workspace = true
iced_widget.features = ["wgpu"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
2023-09-09 13:59:18 +02:00
iced_wgpu.workspace = true
iced_wgpu.features = ["webgl"]
2023-09-07 03:15:02 +02:00
console_error_panic_hook = "0.1"
console_log = "1.0"
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["Element", "HtmlCanvasElement", "Window", "Document"] }