diff --git a/CHANGELOG.md b/CHANGELOG.md index c2e4e847..8854e409 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,9 +25,11 @@ Unreleased which returns a `Result<&'static [ResourceType], StoreObjectConversionError>` - Add missing `StoreObject::Reactor` to the `seasonal-season-5` feature. -### Other +### Misc: + - Change `PhantomData` in `screeps::local::ObjectId` to better model `ObjectId`'s relationship with the wrapped type. - This allows `ObjectId` to be `Send + Sync` regardless of the wrapped type +- Update `enum-iterator` to 2.0 0.20.1 (2024-01-09) =================== diff --git a/Cargo.toml b/Cargo.toml index 7accf711..a802815d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] arrayvec = "0.7" enum_dispatch = "0.3" -enum-iterator = "1.4" +enum-iterator = "2.0" js-sys = "0.3" num-derive = "0.4" num-traits = "0.2"