diff --git a/.cargo/config.toml b/.cargo/config.toml index 3255ccb..19c117b 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -3,7 +3,7 @@ # bevy_rapier2dが依存しているbevy_eguiがweb_sysのunstable API (bevy_egui::manage_clipboard) を使っているため、 # --cfg=web_sys_unstable_apis が必要 -# rustflags = ["--cfg=web_sys_unstable_apis"] +rustflags = ["--cfg=web_sys_unstable_apis"] # https://github.com/mozilla/sccache # rustc-wrapper = "sccache.exe" diff --git a/Cargo.lock b/Cargo.lock index da362cb..0157151 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1386,6 +1386,7 @@ dependencies = [ [[package]] name = "bevy_simple_websocket" version = "0.2.6" +source = "git+https://github.com/aratama/bevy_simple_websocket#00403e7b9ecb36d5b45ebbb84a188dc8bd698ff7" dependencies = [ "bevy", "bevy-tokio-tasks", diff --git a/Cargo.toml b/Cargo.toml index bc5c4eb..b425a3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ bevy_asset_loader = "0.21.0" bevy_kira_audio = { version = "0.20.0", features = ["ogg"] } bevy_light_2d = "0.4.2" bevy_particle_systems = "0.13.0" -bevy_simple_websocket = { path = "../bevy_simple_websocket" } +bevy_simple_websocket = { git = "https://github.com/aratama/bevy_simple_websocket" } bincode = "1.3.3" dotenvy = "0.15.7" dotenvy_macro = "0.15.7"