2022-06-24 09:04:45 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
# IMPORTANT(bartlomieju): this crate is internal and shouldn't be published
|
|
|
|
# to crates.io
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_snapshots"
|
2022-06-30 15:31:47 -04:00
|
|
|
version = "0.1.0"
|
2022-06-24 09:04:45 -04:00
|
|
|
authors = ["the Deno authors"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
description = "Provides snapshots of TSC & Deno (runtime+web+core)"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "deno_snapshots"
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-30 15:31:47 -04:00
|
|
|
deno_core = { version = "0.141.0", path = "../core" } # For mock TSC #[op]s
|
|
|
|
deno_runtime = { version = "0.67.0", path = "../runtime" }
|
2022-06-24 09:04:45 -04:00
|
|
|
lzzzz = "1.0"
|
|
|
|
once_cell = "1.10.0"
|
|
|
|
zstd = "0.11.1"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2022-06-30 15:31:47 -04:00
|
|
|
deno_core = { version = "0.141.0", path = "../core" } # For mock TSC #[op]s
|
|
|
|
deno_runtime = { version = "0.67.0", path = "../runtime" }
|
2022-06-24 09:04:45 -04:00
|
|
|
lzzzz = "1.0"
|
|
|
|
regex = "1.5.6"
|
|
|
|
serde = { version = "1.0.125", features = ["derive"] }
|
|
|
|
zstd = "0.11.1"
|