mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 14:58:04 +00:00
464b4432cf
* Move all deps to workspace toml * cargo fmt and codec 3.4, removing now unneeded 'full' feature * add wasm-tests to workspace and fix subxt inheritng * cargo fmt * wasm-test thing can't be in workspace so revert that * remove unwanted target dir from wasm-tests
32 lines
909 B
TOML
32 lines
909 B
TOML
[package]
|
|
name = "subxt-cli"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/subxt-cli"
|
|
homepage.workspace = true
|
|
description = "Command line utilities for working with subxt codegen"
|
|
|
|
[[bin]]
|
|
name = "subxt"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
subxt-codegen = { workspace = true }
|
|
subxt-metadata = { workspace = true }
|
|
clap = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
color-eyre = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
hex = { workspace = true }
|
|
frame-metadata = { workspace = true }
|
|
codec = { package = "parity-scale-codec", workspace = true }
|
|
syn = { workspace = true }
|
|
jsonrpsee = { workspace = true, features = ["async-client", "client-ws-transport", "http-client"] }
|
|
tokio = { workspace = true }
|