diff --git a/Cargo.lock b/Cargo.lock index b1a91b9..111a182 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -371,7 +371,7 @@ dependencies = [ "js-sys", "lazy_static", "log", - "screeps-game-api", + "screeps-game-api 0.22.0", "screeps-game-utils", "wasm-bindgen", "web-sys", @@ -396,14 +396,33 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "screeps-game-api" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b6a9eaedad38492c8572b3c0eae71fcecd3ef4a3e07b290d75b2ae07d492b0f" +dependencies = [ + "arrayvec", + "enum-iterator", + "enum_dispatch", + "js-sys", + "num-derive", + "num-traits", + "serde", + "serde-wasm-bindgen", + "serde_json", + "serde_repr", + "wasm-bindgen", +] + [[package]] name = "screeps-game-utils" -version = "0.22.1" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb12354a462cba45552e938073c37081fd748a8ce6a22f9e3f82ac951f6adeee" +checksum = "02b7db4ec03981c4b9e5e3d162c2cc0c6b71aaa116eb710063a67f5ea75f72d7" dependencies = [ "chrono", - "screeps-game-api", + "screeps-game-api 0.23.0", "serde", "serde_json", "serde_with", diff --git a/Cargo.toml b/Cargo.toml index 088e3e1..5996222 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ web-sys = { version = "0.3", features = ["console"] } # all the `std::fmt` and `std::panicking` infrastructure, so isn't great for # code size when deploying. console_error_panic_hook = { version = "0.1.7", optional = true } -screeps-game-utils = "0.22.1" +screeps-game-utils = "0.23.0" lazy_static = "1.5.0" [profile.release]