Skip to content

Commit

Permalink
Update kollect
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn committed Mar 8, 2024
1 parent 3650736 commit adf266b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **breaking:** `List::push` renamed to `List::try_push` ([#136])
- **breaking:** `Map::insert` renamed to `Map::try_insert` ([#136])
- **breaking:** `Map::remove` renamed to `Map::try_remove` ([#136])
- **breaking:** Update to kollect 0.3 ([#138])

[#90]: https://github.com/EmbarkStudios/mirror-mirror/pull/90
[#110]: https://github.com/EmbarkStudios/mirror-mirror/pull/110
[#109]: https://github.com/EmbarkStudios/mirror-mirror/pull/109
[#119]: https://github.com/EmbarkStudios/mirror-mirror/pull/119
[#136]: https://github.com/EmbarkStudios/mirror-mirror/pull/136
[#138]: https://github.com/EmbarkStudios/mirror-mirror/pull/138

# 0.1.19 (26. February, 2023)

Expand Down
21 changes: 14 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/mirror-mirror-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = "Macros for the mirror-mirror crate"
proc-macro = true

[dependencies]
kollect = { version = "0.2.1", default-features = false }
kollect = { version = "0.3", default-features = false }
proc-macro2 = "1.0.47"
quote = "1.0.21"
syn = { version = "2.0.2", features = ["full", "parsing", "visit"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/mirror-mirror/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ macaw = ["dep:macaw"]

[dependencies]
ahash = { version = "0.8.2", default-features = false, features = ["runtime-rng"] }
kollect = { version = "0.2.1", default-features = false }
kollect = { version = "0.3", default-features = false }
mirror-mirror-macros = { path = "../mirror-mirror-macros", version = "0.1.4" }
once_cell = { version = "1.16", features = ["alloc", "race", "critical-section"], default-features = false }
ordered-float = { version = "4", default-features = false }
Expand Down

0 comments on commit adf266b

Please sign in to comment.