You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf: Speed up TOML parsing by upgrading toml (#15736)
### What does this PR try to resolve?
For numbers, see https://epage.github.io/blog/2025/07/toml-09/
Further areas for improvement:
- Enable `fast_hash` (see #15649)
- Only track spans for local manifests, allowing us to skip the
`make_owned` call for most packages
### How to test and review this PR?
Copy file name to clipboardExpand all lines: Cargo.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -105,8 +105,8 @@ tar = { version = "0.4.44", default-features = false }
105
105
tempfile = "3.20.0"
106
106
thiserror = "2.0.12"
107
107
time = { version = "0.3.41", features = ["parsing", "formatting", "serde"] }
108
-
toml = { version = "0.8.23", default-features = false }
109
-
toml_edit = { version = "0.22.27", features = ["serde"] }
108
+
toml = { version = "0.9.0", default-features = false }
109
+
toml_edit = { version = "0.23.0", features = ["serde"] }
110
110
tracing = { version = "0.1.41", default-features = false, features = ["std"] } # be compatible with rustc_log: https://github.com/rust-lang/rust/blob/e51e98dde6a/compiler/rustc_log/Cargo.toml#L9
111
111
tracing-chrome = "0.7.2"
112
112
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
0 commit comments