mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 17:17:56 +00:00
a600e278ed
* 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>
18 lines
597 B
TOML
18 lines
597 B
TOML
[package]
|
|
name = "sp-maybe-compressed-blob"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Handling of blobs, usually Wasm code, which may be compresed"
|
|
documentation = "https://docs.rs/sp-maybe-compressed-blob"
|
|
readme = "README.md"
|
|
|
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
|
zstd = { version = "0.6.0", default-features = false }
|
|
|
|
[target.'cfg(target_os = "unknown")'.dependencies]
|
|
ruzstd = { version = "0.2.2" }
|