Skip to content

Commit fc0475f

Browse files
committed
updated dependencies in library package
1 parent 01e2fff commit fc0475f

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

library/Cargo.lock

+13-13
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ version = 3
44

55
[[package]]
66
name = "addr2line"
7-
version = "0.22.0"
7+
version = "0.24.2"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
9-
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
9+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
1010
dependencies = [
1111
"compiler_builtins",
12-
"gimli 0.29.0",
12+
"gimli 0.31.1",
1313
"rustc-std-workspace-alloc",
1414
"rustc-std-workspace-core",
1515
]
1616

1717
[[package]]
18-
name = "adler"
19-
version = "1.0.2"
18+
name = "adler2"
19+
version = "2.0.0"
2020
source = "registry+https://github.com/rust-lang/crates.io-index"
21-
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
21+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
2222
dependencies = [
2323
"compiler_builtins",
2424
"rustc-std-workspace-core",
@@ -113,9 +113,9 @@ dependencies = [
113113

114114
[[package]]
115115
name = "gimli"
116-
version = "0.29.0"
116+
version = "0.30.0"
117117
source = "registry+https://github.com/rust-lang/crates.io-index"
118-
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
118+
checksum = "e2e1d97fbe9722ba9bbd0c97051c2956e726562b61f86a25a4360398a40edfc9"
119119
dependencies = [
120120
"compiler_builtins",
121121
"rustc-std-workspace-alloc",
@@ -124,9 +124,9 @@ dependencies = [
124124

125125
[[package]]
126126
name = "gimli"
127-
version = "0.30.0"
127+
version = "0.31.1"
128128
source = "registry+https://github.com/rust-lang/crates.io-index"
129-
checksum = "e2e1d97fbe9722ba9bbd0c97051c2956e726562b61f86a25a4360398a40edfc9"
129+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
130130
dependencies = [
131131
"compiler_builtins",
132132
"rustc-std-workspace-alloc",
@@ -177,11 +177,11 @@ dependencies = [
177177

178178
[[package]]
179179
name = "miniz_oxide"
180-
version = "0.7.4"
180+
version = "0.8.0"
181181
source = "registry+https://github.com/rust-lang/crates.io-index"
182-
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
182+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
183183
dependencies = [
184-
"adler",
184+
"adler2",
185185
"compiler_builtins",
186186
"rustc-std-workspace-alloc",
187187
"rustc-std-workspace-core",

library/panic_abort/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doc = false
1515
alloc = { path = "../alloc" }
1616
cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1717
core = { path = "../core" }
18-
compiler_builtins = "0.1.0"
18+
compiler_builtins = "0.1.133"
1919

2020
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
2121
libc = { version = "0.2", default-features = false }

library/panic_unwind/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ doc = false
1515
alloc = { path = "../alloc" }
1616
core = { path = "../core" }
1717
unwind = { path = "../unwind" }
18-
compiler_builtins = "0.1.0"
18+
compiler_builtins = "0.1.133"
1919
cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
2020

2121
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
22-
libc = { version = "0.2", default-features = false }
22+
libc = { version = "0.2.159", default-features = false }
2323

2424
[lints.rust.unexpected_cfgs]
2525
level = "warn"

library/std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ std_detect = { path = "../stdarch/crates/std_detect", default-features = false,
3535
rustc-demangle = { version = "0.1.24", features = ['rustc-dep-of-std'] }
3636

3737
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
38-
miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
39-
addr2line = { version = "0.22.0", optional = true, default-features = false }
38+
miniz_oxide = { version = "0.8.0", optional = true, default-features = false }
39+
addr2line = { version = "0.24.2", optional = true, default-features = false }
4040

4141
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
4242
libc = { version = "0.2.156", default-features = false, features = [

library/test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ std = { path = "../std" }
99
core = { path = "../core" }
1010

1111
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
12-
libc = { version = "0.2.150", default-features = false }
12+
libc = { version = "0.2.159", default-features = false }

library/unwind/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ doc = false
1515

1616
[dependencies]
1717
core = { path = "../core" }
18-
compiler_builtins = "0.1.0"
18+
compiler_builtins = "0.1.133"
1919
cfg-if = "1.0"
2020

2121
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
22-
libc = { version = "0.2.140", features = ['rustc-dep-of-std'], default-features = false }
22+
libc = { version = "0.2.159", features = ['rustc-dep-of-std'], default-features = false }
2323

2424
[target.'cfg(target_os = "xous")'.dependencies]
25-
unwinding = { version = "0.2.1", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
25+
unwinding = { version = "0.2.2", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
2626

2727
[features]
2828

0 commit comments

Comments
 (0)