Skip to content

Commit 8e0855b

Browse files
authored
Rollup merge of rust-lang#59436 - gnzlbg:update_jemalloc, r=alexcrichton
Update jemalloc-sys to version 0.3.0 This PR updates jemalloc-sys from 0.1.8 to 0.3.0.
2 parents 972a8ce + b73886d commit 8e0855b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
12031203

12041204
[[package]]
12051205
name = "jemalloc-sys"
1206-
version = "0.1.8"
1206+
version = "0.3.0"
12071207
source = "registry+https://github.com/rust-lang/crates.io-index"
12081208
dependencies = [
12091209
"cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2074,7 +2074,7 @@ name = "rand_chacha"
20742074
version = "0.1.0"
20752075
source = "registry+https://github.com/rust-lang/crates.io-index"
20762076
dependencies = [
2077-
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
2077+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
20782078
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
20792079
]
20802080

@@ -2096,7 +2096,7 @@ name = "rand_hc"
20962096
version = "0.1.0"
20972097
source = "registry+https://github.com/rust-lang/crates.io-index"
20982098
dependencies = [
2099-
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
2099+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
21002100
]
21012101

21022102
[[package]]
@@ -2121,7 +2121,7 @@ name = "rand_xorshift"
21212121
version = "0.1.0"
21222122
source = "registry+https://github.com/rust-lang/crates.io-index"
21232123
dependencies = [
2124-
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
2124+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
21252125
]
21262126

21272127
[[package]]
@@ -2500,7 +2500,7 @@ dependencies = [
25002500
name = "rustc-main"
25012501
version = "0.0.0"
25022502
dependencies = [
2503-
"jemalloc-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
2503+
"jemalloc-sys 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
25042504
"rustc_codegen_ssa 0.0.0",
25052505
"rustc_driver 0.0.0",
25062506
"rustc_target 0.0.0",
@@ -4096,7 +4096,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
40964096
"checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450"
40974097
"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358"
40984098
"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b"
4099-
"checksum jemalloc-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "bfc62c8e50e381768ce8ee0428ee53741929f7ebd73e4d83f669bcf7693e00ae"
4099+
"checksum jemalloc-sys 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7bef0d4ce37578dfd80b466e3d8324bd9de788e249f1accebb0c472ea4b52bdc"
41004100
"checksum jobserver 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "dd80e58f77e0cdea53ba96acc5e04479e5ffc5d869626a6beafe50fed867eace"
41014101
"checksum json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be"
41024102
"checksum jsonrpc-core 10.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a5152c3fda235dfd68341b3edf4121bc4428642c93acbd6de88c26bf95fc5d7"

src/rustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rustc_driver = { path = "../librustc_driver" }
1717
rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
1818

1919
[dependencies.jemalloc-sys]
20-
version = '0.1.8'
20+
version = '0.3.0'
2121
optional = true
2222
features = ['unprefixed_malloc_on_supported_platforms']
2323

0 commit comments

Comments
 (0)