mirror of
https://github.com/denoland/deno.git
synced 2024-12-27 17:49:08 -05:00
72f9a2e20d
Move v8_set_flags and v8_version to core. (The idea is that src/ should not depend on libdeno.rs anymore. This is a step towards that.)
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()
|
|
}
|