mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
65e72b68ac
This commit does major refactor of "Worker" and "WebWorker", in order to decouple them from "ProgramState" and "Flags". The main points of interest are "create_main_worker()" and "create_web_worker_callback()" functions which are responsible for creating "Worker" and "WebWorker" in CLI context. As a result it is now possible to factor out common "runtime" functionality into a separate crate.
15 lines
442 B
Rust
15 lines
442 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 is_canary() -> bool {
|
|
option_env!("DENO_CANARY").is_some()
|
|
}
|