mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 11:47:56 +00:00
45bfe6866d
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.91 to 1.0.92. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.91...v1.0.92) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "subxt-cli"
|
|
version = "0.26.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
publish = true
|
|
|
|
license = "Apache-2.0 OR GPL-3.0"
|
|
repository = "https://github.com/paritytech/subxt"
|
|
documentation = "https://docs.rs/subxt-cli"
|
|
homepage = "https://www.parity.io/"
|
|
description = "Command line utilities for working with subxt codegen"
|
|
|
|
[[bin]]
|
|
name = "subxt"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# perform subxt codegen
|
|
subxt-codegen = { version = "0.26.0", path = "../codegen" }
|
|
# perform node compatibility
|
|
subxt-metadata = { version = "0.26.0", path = "../metadata" }
|
|
# parse command line args
|
|
clap = { version = "4.1.4", features = ["derive", "cargo"] }
|
|
# colourful error reports
|
|
color-eyre = "0.6.1"
|
|
# serialize the metadata
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
# serialize as json
|
|
serde_json = "1.0.92"
|
|
# hex encoded metadata to bytes
|
|
hex = "0.4.3"
|
|
# actual metadata types
|
|
frame-metadata = { version = "15.0.0", features = ["v14", "std"] }
|
|
# decode bytes into the metadata types
|
|
scale = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
|
# generate the item mod for codegen
|
|
syn = "1.0.80"
|
|
# communicate with the substrate nodes
|
|
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] }
|
|
# async runtime
|
|
tokio = { version = "1.25", features = ["rt-multi-thread", "macros", "time"] }
|