deno_snapshots 0.2.0

v8 snapshot used by the Deno CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2025 the Deno authors. MIT license.

#[cfg(not(feature = "disable"))]
pub static CLI_SNAPSHOT: Option<&[u8]> = Some(include_bytes!(concat!(
  env!("OUT_DIR"),
  "/CLI_SNAPSHOT.bin"
)));
#[cfg(feature = "disable")]
pub static CLI_SNAPSHOT: Option<&[u8]> = None;

mod shared;

pub use shared::TS_VERSION;