1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 10:07:54 -05:00
denoland-deno/snapshots/Cargo.toml
Aaron O'Mullan 43a52feebd refactor(snapshots): to their own crate (#14794)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2022-06-30 14:12:31 -04:00

32 lines
906 B
TOML

# 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"
version = "0.0.0"
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]
deno_core = { version = "0.140.0", path = "../core" } # For mock TSC #[op]s
deno_runtime = { version = "0.66.0", path = "../runtime" }
lzzzz = "1.0"
once_cell = "1.10.0"
zstd = "0.11.1"
[build-dependencies]
deno_core = { version = "0.140.0", path = "../core" } # For mock TSC #[op]s
deno_runtime = { version = "0.66.0", path = "../runtime" }
lzzzz = "1.0"
regex = "1.5.6"
serde = { version = "1.0.125", features = ["derive"] }
zstd = "0.11.1"