Skip to content
Snippets Groups Projects
Cargo.toml 629 B
Newer Older
Louis's avatar
Louis committed
[package]
name = "remote_events"
version = "0.1.0"
edition = "2021"

Louis's avatar
Louis committed
[dependencies]
serde = { version = "1.0.140", features = ["derive"] }
thiserror = "1.0.31"
log = "0.4.17"

[dependencies.bevy]
version = "0.7"
default-features = false
features = []

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
websocket = { version = "0.26.5" , default-features = false, features = ["sync", "sync-ssl", "bytes", "native-tls"]}

[target.'cfg(target_arch = "wasm32")'.dependencies]
Louis's avatar
Louis committed
wasm-sockets = { git = "https://lab.lcr.gr/microhacks/wasm-sockets.git", rev = "5c8bdb2a54c1acfd816587bfcd5f64a34b3740b4" }