mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 14:58:04 +00:00
8b4fea0b07
* refactor: support default port in URL Update jsonrpsee to v0.20 to support the default port number in URLs. * fix nit, revert web feature * fix lightclient code
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
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 }
|
|
subxt = { workspace = true, features = ["native", "jsonrpsee"] }
|
|
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 }
|
|
scale-info = { workspace = true }
|
|
scale-value = { workspace = true }
|
|
syn = { workspace = true }
|
|
jsonrpsee = { workspace = true, features = ["async-client", "client-ws-transport-native-tls", "http-client"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|