diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 23f8f5237..b8b7e9878 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.2.3" +version = "1.3.0" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -15,17 +15,18 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.52.0" } -deno_web = { path = "../op_crates/web", version = "0.2.0" } +deno_core = { path = "../core", version = "0.53.0" } +deno_web = { path = "../op_crates/web", version = "0.3.0" } [target.'cfg(windows)'.build-dependencies] winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.52.0" } +deno_core = { path = "../core", version = "0.53.0" } deno_lint = { version = "0.1.22", features = ["json"] } + atty = "0.2.14" base64 = "0.12.3" bytes = "0.5.6" |