mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
1a01bca647
* Fixes bug in wasm-builder with cargo publish There was a bug in wasm-builder which resulted in generating a `Cargo.lock` in the project directory because of running `cargo metadata`. This resulted in commands like `cargo publish` to fail (if there was no `Cargo.lock` before building), because it checks that the project directory isn't modified. * Update utils/wasm-builder/src/wasm_project.rs Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com> Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
26 lines
593 B
TOML
26 lines
593 B
TOML
[package]
|
|
name = "substrate-wasm-builder"
|
|
version = "2.0.1"
|
|
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.10.0"
|
|
tempfile = "3.1.0"
|
|
toml = "0.5.4"
|
|
walkdir = "2.3.1"
|
|
fs2 = "0.4.3"
|
|
wasm-gc-api = "0.1.11"
|
|
atty = "0.2.13"
|
|
itertools = "0.8.2"
|
|
ansi_term = "0.12.1"
|