mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
127b9bec15
Hi folks! Thank for the well organized codebase and an outstanding engineering! I am trying to compile a substrate node template from source (https://github.com/paritytech/polkadot-sdk) and encountered a dependency conflict  and a deprecation warning from advisory db for `ansi_term` (I see you replace it with some alternatives in other crates). While for `ansi_term` there is an adopted fork (https://github.com/rustadopt/ansiterm-rs) and it was my first commit in the PR, I've decided to use https://github.com/console-rs/console as you already use it to reduce dependencies (as I believe other substrate crates will remove ansi_term eventually) --------- Co-authored-by: Bastian Köcher <git@kchr.de>
29 lines
672 B
TOML
29 lines
672 B
TOML
[package]
|
|
name = "substrate-wasm-builder"
|
|
version = "5.0.0-dev"
|
|
authors.workspace = true
|
|
description = "Utility for building WASM binaries"
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
build-helper = "0.1.1"
|
|
cargo_metadata = "0.15.4"
|
|
console = "0.15.8"
|
|
strum = { version = "0.24.1", features = ["derive"] }
|
|
tempfile = "3.1.0"
|
|
toml = "0.8.8"
|
|
walkdir = "2.3.2"
|
|
sp-maybe-compressed-blob = { path = "../../primitives/maybe-compressed-blob" }
|
|
filetime = "0.2.16"
|
|
wasm-opt = "0.116"
|
|
parity-wasm = "0.45"
|