mirror of
https://github.com/denoland/deno.git
synced 2025-01-31 11:49:31 -05:00
12 lines
331 B
Rust
12 lines
331 B
Rust
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
use crate::libdeno;
|
|
|
|
use std::ffi::CStr;
|
|
|
|
pub const DENO: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
pub fn v8() -> &'static str {
|
|
let version = unsafe { libdeno::deno_v8_version() };
|
|
let c_str = unsafe { CStr::from_ptr(version) };
|
|
c_str.to_str().unwrap()
|
|
}
|