2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-08-29 14:19:54 -04:00
|
|
|
|
|
|
|
use deno_core::url::Url;
|
|
|
|
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.
|
2023-03-16 04:09:26 -04:00
|
|
|
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.180.0/";
|
2022-08-29 14:19:54 -04:00
|
|
|
|
|
|
|
pub static CURRENT_STD_URL: Lazy<Url> =
|
2023-01-14 23:06:46 -05:00
|
|
|
Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).expect("invalid std url"));
|