1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/src/version.rs
2018-08-22 12:08:52 -04:00

14 lines
456 B
Rust

// Copyright 2018 the Deno authors. All rights reserved. MIT license.
use binding;
use std::ffi::CStr;
// This is the source of truth for the Deno version. Ignore the value in Cargo.toml.
const DENO_VERSION: &str = "0.0.3";
pub fn print_version() {
let v = unsafe { binding::deno_v8_version() };
let c_str = unsafe { CStr::from_ptr(v) };
let version = c_str.to_str().unwrap();
println!("deno: {}", DENO_VERSION);
println!("v8: {}", version);
}