diff options
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r-- | cli/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 25e0bdc31..29cd04ecd 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -16,7 +16,8 @@ path = "main.rs" [build-dependencies] deno_core = { path = "../core", version = "0.49.0" } -deno_typescript = { path = "../deno_typescript", version = "0.49.0" } +serde = { version = "1.0.112", features = ["derive"] } +serde_json = { version = "1.0.55", features = [ "preserve_order" ] } [target.'cfg(windows)'.build-dependencies] winres = "0.1" @@ -25,7 +26,6 @@ winapi = "0.3.8" [dependencies] deno_core = { path = "../core", version = "0.49.0" } deno_lint = "0.1.16" -deno_typescript = { path = "../deno_typescript", version = "0.49.0" } atty = "0.2.14" base64 = "0.12.2" |