mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
85aa632278
* Make debug builds more usable This pr makes debug builds more usable in terms of `cargo run -- --dev`. 1. `--dev` activates `--execution native`, iff `--execution` is not given or no sub `--execution-*` is given. 2. It was probably a mistake to compile WASM in debug for a debug build. So, we now build the WASM binary always as `release` (if not requested differently by the user). So, we trade compilation time for a better debug experience. * Make sure we only overwrite default values * Make it work * Apply suggestion
20 lines
445 B
TOML
20 lines
445 B
TOML
[package]
|
|
name = "substrate-wasm-builder"
|
|
version = "1.0.9"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Utility for building WASM binaries"
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
repository = "https://github.com/paritytech/substrate"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
build-helper = "0.1.1"
|
|
cargo_metadata = "0.9.0"
|
|
tempfile = "3.1.0"
|
|
toml = "0.5.4"
|
|
walkdir = "2.2.9"
|
|
fs2 = "0.4.3"
|
|
wasm-gc-api = "0.1.11"
|
|
atty = "0.2.13"
|