summaryrefslogtreecommitdiff
path: root/ext/kv/Cargo.toml
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-03-07 10:00:43 -0700
committerGitHub <noreply@github.com>2024-03-07 10:00:43 -0700
commit4791d16a8efc42fb40ffab79bcdae4f0e106cd89 (patch)
tree3d91c75b0d822ba68797da8a33091597f99f7af6 /ext/kv/Cargo.toml
parent594d8397ad46a90389bec9a76afde1bc7f1fa35b (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 'ext/kv/Cargo.toml')
-rw-r--r--ext/kv/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml
index 3cf265213..1ff556433 100644
--- a/ext/kv/Cargo.toml
+++ b/ext/kv/Cargo.toml
@@ -26,7 +26,7 @@ deno_unsync = "0.1.1"
denokv_proto.workspace = true
denokv_remote.workspace = true
denokv_sqlite.workspace = true
-hex.workspace = true
+faster-hex.workspace = true
log.workspace = true
num-bigint.workspace = true
prost.workspace = true