diff options
| author | Matt Mastracci <matthew@mastracci.com> | 2024-03-07 10:00:43 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-07 10:00:43 -0700 |
| commit | 4791d16a8efc42fb40ffab79bcdae4f0e106cd89 (patch) | |
| tree | 3d91c75b0d822ba68797da8a33091597f99f7af6 /Cargo.toml | |
| parent | 594d8397ad46a90389bec9a76afde1bc7f1fa35b (diff) | |
perf(cli): use faster_hex (#22761)
`cli::util::checksum` was showing up on flame graphs because it was
concatenating allocated strings. We can use `faster-hex` to improve it.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index e3eaf97a1..b11710d0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,6 +103,7 @@ dlopen2 = "0.6.1" ecb = "=0.1.2" elliptic-curve = { version = "0.13.4", features = ["alloc", "arithmetic", "ecdh", "std", "pem"] } encoding_rs = "=0.8.33" +faster-hex = "0.9" fastwebsockets = { version = "0.6", features = ["upgrade", "unstable-split"] } filetime = "0.2.16" flate2 = { version = "1.0.26", default-features = false } @@ -110,7 +111,6 @@ fs3 = "0.5.0" futures = "0.3.21" glob = "0.3.1" h2 = "0.4" -hex = "0.4" http = "1.0" http-body-util = "0.1" http_v02 = { package = "http", version = "0.2.9" } |
