From 475bc35646bc25d796b2638768cd5a79e3a0033e Mon Sep 17 00:00:00 2001 From: Yusuke Tanaka Date: Sat, 29 May 2021 20:18:24 +0900 Subject: chore: upgrade Tokio to 1.6.1 (#10782) --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/Cargo.toml b/core/Cargo.toml index 0f2968e61..2b092fe99 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -33,7 +33,7 @@ path = "examples/http_bench_json_ops.rs" # These dependencies are only used for the 'http_bench_*_ops' examples. [dev-dependencies] -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } bencher = "0.1" [[bench]] -- cgit v1.2.3 From 8a7e1c616d12feb93ed3fda4a70228924c747b5c Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Mon, 31 May 2021 01:20:34 +0100 Subject: fix(cli): Don't statically error on dynamic unmapped bare specifiers (#10618) Fixes #10168 Fixes #10615 Fixes #10616 --- core/module_specifier.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/module_specifier.rs b/core/module_specifier.rs index dc6b4d6bf..4de875073 100644 --- a/core/module_specifier.rs +++ b/core/module_specifier.rs @@ -39,10 +39,10 @@ impl fmt::Display for ModuleResolutionError { InvalidPath(ref path) => write!(f, "invalid module path: {:?}", path), ImportPrefixMissing(ref specifier, ref maybe_referrer) => write!( f, - "relative import path \"{}\" not prefixed with / or ./ or ../{}", + "Relative import path \"{}\" not prefixed with / or ./ or ../{}", specifier, match maybe_referrer { - Some(referrer) => format!(" Imported from \"{}\"", referrer), + Some(referrer) => format!(" from \"{}\"", referrer), None => format!(""), } ), -- cgit v1.2.3 From 1567c1013cc8ff12cf039137792da66a1d0015b5 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 31 May 2021 17:39:24 +0000 Subject: v1.10.3 --- core/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/Cargo.toml b/core/Cargo.toml index 2b092fe99..e22016e67 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.88.0" +version = "0.88.1" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] @@ -13,7 +13,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -serde_v8 = { version = "0.4.0", path = "../serde_v8" } +serde_v8 = { version = "0.4.1", path = "../serde_v8" } anyhow = "1.0.40" futures = "0.3.15" -- cgit v1.2.3