iced/examples/websocket/Cargo.toml
Ian Douglas Scott be9cd3a09f Use once_cell instead of lazy_static
This seems to be generally considered the preferred, idiomatic solution
now. This is in the standard library behind a feature flag (apparently
now called `std::sync::LazyLock`).
2022-10-28 15:58:21 -07:00

23 lines
502 B
TOML

[package]
name = "websocket"
version = "1.0.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
publish = false
[dependencies]
iced = { path = "../..", features = ["tokio", "debug"] }
iced_native = { path = "../../native" }
iced_futures = { path = "../../futures" }
once_cell = "1.15.0"
[dependencies.async-tungstenite]
version = "0.16"
features = ["tokio-rustls-webpki-roots"]
[dependencies.tokio]
version = "1"
features = ["time"]
[dependencies.warp]
version = "0.3"