1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: update node compat layer to std@0.170.0 (#17147)

Fixed a performance regression for express server
This commit is contained in:
Bartek Iwańczuk 2022-12-20 18:23:02 +01:00 committed by GitHub
parent 8165cded14
commit 748ce0a435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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());