deno/cli/version.rs

7 lines
179 B
Rust
Raw Normal View History

2019-01-02 00:58:40 +00:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2018-12-13 21:16:58 +00:00
pub const DENO: &str = env!("CARGO_PKG_VERSION");
pub fn v8() -> &'static str {
2019-03-30 23:30:40 +00:00
deno::v8_version()
}