diff options
| author | Trevor Gross <tmgross@umich.edu> | 2025-06-10 18:25:21 +0000 |
|---|---|---|
| committer | Trevor Gross <tmgross@umich.edu> | 2025-06-11 17:06:53 +0000 |
| commit | 1f6abbb99ffbf052e56c815ba8eac2c9b9a7a75d (patch) | |
| tree | ab6cc5b57334c9979a74e0f6b28360e92222197e /library/std | |
| parent | 1ec80452b6508f915be1c5ae2667f830882029e9 (diff) | |
| download | rust-1f6abbb99ffbf052e56c815ba8eac2c9b9a7a75d.tar.gz rust-1f6abbb99ffbf052e56c815ba8eac2c9b9a7a75d.zip | |
Upgrade the standard library `addr2line` version
0.25.0 is a breaking change only because it upgrades the `gimli` version. It also includes a change to the `compiler-builtins` dependency that helps with [1]. Changelog: https://github.com/gimli-rs/addr2line/blob/master/CHANGELOG.md#0250-20250611 [1]: https://github.com/rust-lang/rust/issues/142265
Diffstat (limited to 'library/std')
| -rw-r--r-- | library/std/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 3e2f34cfb37..ae7107938f3 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -32,7 +32,7 @@ rustc-demangle = { version = "0.1.24", features = ['rustc-dep-of-std'] } [target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies] miniz_oxide = { version = "0.8.0", optional = true, default-features = false } -addr2line = { version = "0.24.0", optional = true, default-features = false } +addr2line = { version = "0.25.0", optional = true, default-features = false } [target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies] libc = { version = "0.2.172", default-features = false, features = [ |
