mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 23:28:18 -05:00
25b564bf86
Bumped versions for 1.32.0 --------- Co-authored-by: mmastrac <mmastrac@users.noreply.github.com> Co-authored-by: Matt Mastracci <matthew@mastracci.com> Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
11 lines
443 B
Rust
11 lines
443 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
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.
|
|
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.181.0/";
|
|
|
|
pub static CURRENT_STD_URL: Lazy<Url> =
|
|
Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).expect("invalid std url"));
|