Skip to main content
Module

x/eszip/Cargo.toml

A compact file format to losslessly serialize an ECMAScript module graph into a single file
Go to Latest
File
[package]name = "eszip_wasm"version = "0.0.0"authors = ["the Deno authors"]edition = "2021"description = "A utility that can download JavaScript and TypeScript module graphs and store them locally in a special zip file"license = "MIT"
[lib]name = "eszip_wasm"path = "lib.rs"crate-type = ["cdylib"]
[dependencies]js-sys = { version = "0.3.58" }web-sys = { version = "0.3.58", features = ["ReadableStreamByobReader"] }deno_graph = "0.33.0"eszip = { path = "../" }wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"] }wasm-bindgen-futures = { version = "0.4.31" }tokio = { version = "1.16", features = ["io-std", "io-util"] }console_error_panic_hook = "0.1.7"anyhow = "1"