summaryrefslogtreecommitdiff
path: root/cli/version.rs
blob: 6967d74356c1adfe364dcfbf214858ff538d6f27 (plain)
1
2
3
4
5
6
7
8
// 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_core::v8_version()
}