mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
15 lines
430 B
Rust
15 lines
430 B
Rust
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
pub const GIT_COMMIT_HASH: &str = env!("GIT_COMMIT_HASH");
|
|
pub const TYPESCRIPT: &str = crate::js::TS_VERSION;
|
|
|
|
pub fn deno() -> String {
|
|
let semver = env!("CARGO_PKG_VERSION");
|
|
option_env!("DENO_CANARY").map_or(semver.to_string(), |_| {
|
|
format!("{}-{}", semver, GIT_COMMIT_HASH)
|
|
})
|
|
}
|
|
|
|
pub fn v8() -> &'static str {
|
|
deno_core::v8_version()
|
|
}
|