diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-04-13 18:22:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 18:22:48 +0200 |
commit | 1be65bbe4f15df27d502ed6c06d717e7a964dbab (patch) | |
tree | 175136bc2bd7379c5f42f7296aeb03b37e9d494e /core | |
parent | d46b37f6a8639e25ff54ea1e264cc7cebdd03be9 (diff) |
chore: release crates (#10164)
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 74323b4dd..2fbe19254 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.83.0" +version = "0.84.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] @@ -13,6 +13,8 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] +serde_v8 = { version = "0.2.0", path = "../serde_v8" } + anyhow = "1.0.40" futures = "0.3.13" indexmap = "1.6.2" @@ -23,7 +25,6 @@ pin-project = "1.0.6" rusty_v8 = "0.22.1" serde = { version = "1.0.125", features = ["derive"] } serde_json = { version = "1.0.64", features = ["preserve_order"] } -serde_v8 = { version = "0.1.0", path = "../serde_v8" } url = { version = "2.2.1", features = ["serde"] } [[example]] |