diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-09-10 09:15:16 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-10 09:15:16 +0530 |
commit | a54d5654a26d29dfca1162ccc5476e9224a657e9 (patch) | |
tree | 18ef0365e9f3d4e25fffc5f6d2f9be044b7143f1 /core | |
parent | 59476ab96d04e92c2f00704672e692fc9d2b12a2 (diff) |
perf: optimize URL serialization (#15663)
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 3e62663e3..f6628531a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -32,7 +32,7 @@ serde = { version = "1.0.136", features = ["derive"] } serde_json = { version = "1.0.79", features = ["preserve_order"] } serde_v8 = { version = "0.61.0", path = "../serde_v8" } sourcemap = "=6.0.1" -url = { version = "2.3.1", features = ["serde"] } +url = { version = "2.3.1", features = ["serde", "expose_internals"] } v8 = { version = "0.49.0", default-features = false } [[example]] |