mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
fa3c35301a
To better distinguish the deno_core crate from the executable deno, which will now be called "the cli" internally.
6 lines
184 B
Rust
6 lines
184 B
Rust
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
pub const DENO: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
pub fn v8() -> &'static str {
|
|
deno_core::v8_version()
|
|
}
|