0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

deno_core 0.64.0 (#8025)

This commit is contained in:
Ryan Dahl 2020-10-19 06:35:09 -04:00 committed by GitHub
parent 59888ff0b2
commit fb2cae9687
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

2
Cargo.lock generated
View file

@ -450,7 +450,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.63.0"
version = "0.64.0"
dependencies = [
"anyhow",
"futures",

View file

@ -20,7 +20,7 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.63.0" }
deno_core = { path = "../core", version = "0.64.0" }
deno_web = { path = "../op_crates/web", version = "0.15.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.7.0" }
@ -29,7 +29,7 @@ winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.63.0" }
deno_core = { path = "../core", version = "0.64.0" }
deno_doc = "0.1.12"
deno_lint = "0.2.4"
deno_web = { path = "../op_crates/web", version = "0.15.0" }

View file

@ -1,7 +1,7 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.63.0"
version = "0.64.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]

View file

@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
deno_core = { version = "0.63.0", path = "../../core" }
deno_core = { version = "0.64.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }

View file

@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
deno_core = { version = "0.63.0", path = "../../core" }
deno_core = { version = "0.64.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }