summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/BUILD.gn6
-rw-r--r--cli/Cargo.toml2
2 files changed, 8 insertions, 0 deletions
diff --git a/cli/BUILD.gn b/cli/BUILD.gn
index 63c5266b6..049553c48 100644
--- a/cli/BUILD.gn
+++ b/cli/BUILD.gn
@@ -13,6 +13,11 @@ main_extern = [
crate_name = "deno"
crate_type = "rlib"
},
+ {
+ label = "$rust_build:serde_derive"
+ crate_name = "serde_derive"
+ crate_type = "proc_macro"
+ },
]
main_extern_rlib = [
"ansi_term",
@@ -32,6 +37,7 @@ main_extern_rlib = [
"remove_dir_all",
"ring",
"rustyline",
+ "serde",
"serde_json",
"source_map_mappings",
"tempfile",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index aa2605d30..8d38a456b 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -36,6 +36,8 @@ regex = "1.1.6"
remove_dir_all = "0.5.1"
ring = "0.14.6"
rustyline = "4.0.0"
+serde = "1.0.91"
+serde_derive = "1.0.91"
serde_json = "1.0.39"
source-map-mappings = "0.5.0"
tempfile = "3.0.7"