synchronize deno and deno_std versions (#3415)

This commit is contained in:
Axetroy 2019-11-30 11:03:55 +08:00 committed by Ry Dahl
parent a537c03df7
commit 81efa9d938

View file

@ -22,7 +22,12 @@ macro_rules! sset {
macro_rules! std_url {
($x:expr) => {
concat!("https://deno.land/std@v0.23.0/", $x)
concat!(
"https://deno.land/std@v",
env!("CARGO_PKG_VERSION"),
"/",
$x
)
};
}