Files
pezkuwi-subxt/substrate/utils/wasm-builder/Cargo.toml
T
Robert Habermeier a600e278ed Support code blobs compressed with zstd (#8549)
* begin maybe-compressed-blob

* fix build

* implement blob compression / decompression

* add some tests

* decode -> decompress

* decompress code if compressed

* make API of compresseed blob crate take limit as parameter

* use new API in sc-executro

* wasm-builder: compress wasm

* fix typo

* simplify

* address review

* fix wasm_project.rs

* Update primitives/maybe-compressed-blob/Cargo.toml

Co-authored-by: Andronik Ordian <write@reusable.software>

Co-authored-by: Andronik Ordian <write@reusable.software>
2021-04-07 20:44:45 +00:00

25 lines
657 B
TOML

[package]
name = "substrate-wasm-builder"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Utility for building WASM binaries"
edition = "2018"
readme = "README.md"
repository = "https://github.com/paritytech/substrate/"
license = "Apache-2.0"
homepage = "https://substrate.dev"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
build-helper = "0.1.1"
cargo_metadata = "0.12.0"
tempfile = "3.1.0"
toml = "0.5.4"
walkdir = "2.3.1"
wasm-gc-api = "0.1.11"
atty = "0.2.13"
ansi_term = "0.12.1"
sp-maybe-compressed-blob = { version = "3.0.0", path = "../../primitives/maybe-compressed-blob" }