summaryrefslogtreecommitdiff
path: root/cli/version.rs
blob: 148337e717a838a7739ca3dc96c1fda6735eae90 (plain)
1
2
3
4
5
6
7
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
pub const DENO: &str = env!("CARGO_PKG_VERSION");
pub const TYPESCRIPT: &str = crate::js::TS_VERSION;

pub fn v8() -> &'static str {
  deno::v8_version()
}