[ruby/mmtk] Bump mmtk-core

https://github.com/mmtk/mmtk-core/pull/1261 fixes an issue where the following
script causes a Rust panic:

    GC.disable
    10_000.times { Object.new }
    puts GC.stat

https://github.com/ruby/mmtk/commit/6191ee994a
This commit is contained in:
Peter Zhu 2025-01-15 10:12:20 -05:00 committed by git
parent 6286d3858c
commit cb6476a34e
2 changed files with 3 additions and 3 deletions

4
gc/mmtk/Cargo.lock generated
View File

@ -432,7 +432,7 @@ dependencies = [
[[package]]
name = "mmtk"
version = "0.30.0"
source = "git+https://github.com/mmtk/mmtk-core.git?rev=68bf1b638263b250b12e55ef25bf8d09b01ca0b0#68bf1b638263b250b12e55ef25bf8d09b01ca0b0"
source = "git+https://github.com/mmtk/mmtk-core.git?rev=2f6f078b6fd7bdc23688ead55a055d825a23b863#2f6f078b6fd7bdc23688ead55a055d825a23b863"
dependencies = [
"atomic",
"atomic-traits",
@ -468,7 +468,7 @@ dependencies = [
[[package]]
name = "mmtk-macros"
version = "0.30.0"
source = "git+https://github.com/mmtk/mmtk-core.git?rev=68bf1b638263b250b12e55ef25bf8d09b01ca0b0#68bf1b638263b250b12e55ef25bf8d09b01ca0b0"
source = "git+https://github.com/mmtk/mmtk-core.git?rev=2f6f078b6fd7bdc23688ead55a055d825a23b863#2f6f078b6fd7bdc23688ead55a055d825a23b863"
dependencies = [
"proc-macro-error",
"proc-macro2",

View File

@ -26,7 +26,7 @@ features = ["is_mmtk_object", "object_pinning", "sticky_immix_non_moving_nursery
# Uncomment the following lines to use mmtk-core from the official repository.
git = "https://github.com/mmtk/mmtk-core.git"
rev = "68bf1b638263b250b12e55ef25bf8d09b01ca0b0"
rev = "2f6f078b6fd7bdc23688ead55a055d825a23b863"
# Uncomment the following line to use mmtk-core from a local repository.
# path = "../../../mmtk-core"