diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-12-20 18:23:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 18:23:02 +0100 |
commit | 748ce0a435fee2b4f10fe027fa7e5e7224ac23c9 (patch) | |
tree | e0f903d1a563ae9bf7b4701d9844c3018cc401ef | |
parent | 8165cded14abd82d5f5995c0660a8a046c91630e (diff) |
chore: update node compat layer to std@0.170.0 (#17147)
Fixed a performance regression for express server
-rw-r--r-- | cli/deno_std.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/deno_std.rs b/cli/deno_std.rs index 874e75af5..01c2fddec 100644 --- a/cli/deno_std.rs +++ b/cli/deno_std.rs @@ -5,7 +5,7 @@ use once_cell::sync::Lazy; // WARNING: Ensure this is the only deno_std version reference as this // is automatically updated by the version bump workflow. -static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.168.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.170.0/"; pub static CURRENT_STD_URL: Lazy<Url> = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap()); |