summaryrefslogtreecommitdiff
path: root/core/Cargo.toml
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-10-09 15:45:40 -0400
committerGitHub <noreply@github.com>2020-10-09 15:45:40 -0400
commit2379a3b3403462ae95fef05beee43efb3e51b2c7 (patch)
treee35cf4b5c10af0e7938e6422dbfb99bee3e94912 /core/Cargo.toml
parentf4357f0ff9d39411f22504fcc20db6bd5dec6ddb (diff)
Implement Serialize for ModuleSpecifier (#7900)
Also re-export serde from deno_core, since its now a dependency.
Diffstat (limited to 'core/Cargo.toml')
-rw-r--r--core/Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 5a13be0d1..0a66596aa 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -20,9 +20,10 @@ lazy_static = "1.4.0"
libc = "0.2.77"
log = "0.4.11"
rusty_v8 = "0.11.0"
-serde_json = { version = "1.0.57", features = ["preserve_order"] }
+serde_json = { version = "1.0", features = ["preserve_order"] }
+serde = { version = "1.0", features = ["derive"] }
smallvec = "1.4.2"
-url = "2.1.1"
+url = { version = "2.1.1", features = ["serde"] }
[[example]]
name = "http_bench_bin_ops"