mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 00:18:00 +00:00
0897459928
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.111 to 1.0.113. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.111...v1.0.113) --- 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>
155 lines
4.6 KiB
TOML
155 lines
4.6 KiB
TOML
[workspace]
|
|
members = [
|
|
"cli",
|
|
"codegen",
|
|
"lightclient",
|
|
"testing/substrate-runner",
|
|
"testing/test-runtime",
|
|
"testing/integration-tests",
|
|
"testing/ui-tests",
|
|
"testing/generate-custom-metadata",
|
|
"macro",
|
|
"metadata",
|
|
"signer",
|
|
"subxt",
|
|
"scripts/artifacts",
|
|
]
|
|
|
|
# We exclude any crates that would depend on non mutually
|
|
# exclusive feature flags and thus can't compile with the
|
|
# workspace:
|
|
exclude = ["testing/wasm-rpc-tests", "testing/wasm-lightclient-tests", "signer/wasm-tests", "examples/wasm-example", "examples/parachain-example"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
version = "0.34.0"
|
|
rust-version = "1.74.0"
|
|
license = "Apache-2.0 OR GPL-3.0"
|
|
repository = "https://github.com/paritytech/subxt"
|
|
documentation = "https://docs.rs/subxt"
|
|
homepage = "https://www.parity.io/"
|
|
|
|
[workspace.lints.rust]
|
|
bad_style = "deny"
|
|
improper_ctypes = "deny"
|
|
missing_docs = "deny"
|
|
non_shorthand_field_patterns = "deny"
|
|
no_mangle_generic_items = "deny"
|
|
overflowing_literals = "deny"
|
|
path_statements = "deny"
|
|
patterns_in_fns_without_body = "deny"
|
|
unconditional_recursion = "deny"
|
|
unused_allocation = "deny"
|
|
unused_comparisons = "deny"
|
|
unused_parens = "deny"
|
|
unused_extern_crates = "deny"
|
|
|
|
[workspace.lints.clippy]
|
|
type_complexity = "allow"
|
|
all = "deny"
|
|
|
|
[workspace.dependencies]
|
|
async-trait = "0.1.74"
|
|
assert_matches = "1.5.0"
|
|
base58 = { version = "0.2.0" }
|
|
bitvec = { version = "1", default-features = false }
|
|
blake2 = { version = "0.10.6", default-features = false }
|
|
clap = { version = "4.4.18", features = ["derive", "cargo"] }
|
|
criterion = "0.4"
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
color-eyre = "0.6.1"
|
|
console_error_panic_hook = "0.1.7"
|
|
darling = "0.20.3"
|
|
derivative = "2.2.0"
|
|
either = "1.9.0"
|
|
frame-metadata = { version = "16.0.0", default-features = false, features = ["current", "std"] }
|
|
futures = { version = "0.3.30", default-features = false, features = ["std"] }
|
|
getrandom = { version = "0.2", default-features = false }
|
|
hex = "0.4.3"
|
|
heck = "0.4.1"
|
|
impl-serde = { version = "0.4.0" }
|
|
indoc = "2"
|
|
jsonrpsee = { version = "0.21" }
|
|
pretty_assertions = "1.4.0"
|
|
primitive-types = { version = "0.12.2", default-features = false, features = ["codec", "scale-info", "serde"] }
|
|
proc-macro-error = "1.0.4"
|
|
proc-macro2 = "1.0.78"
|
|
quote = "1.0.35"
|
|
regex = "1.10.3"
|
|
scale-info = "2.10.0"
|
|
scale-value = "0.13.0"
|
|
scale-bits = "0.4.0"
|
|
scale-decode = "0.10.0"
|
|
scale-encode = "0.5.0"
|
|
serde = { version = "1.0.196" }
|
|
serde_json = { version = "1.0.113" }
|
|
syn = { version = "2.0.15", features = ["full", "extra-traits"] }
|
|
thiserror = "1.0.53"
|
|
tokio = { version = "1.35", default-features = false }
|
|
tracing = "0.1.40"
|
|
tracing-wasm = "0.2.1"
|
|
tracing-subscriber = "0.3.18"
|
|
trybuild = "1.0.89"
|
|
url = "2.5.0"
|
|
wabt = "0.10.0"
|
|
wasm-bindgen-test = "0.3.24"
|
|
which = "5.0.0"
|
|
scale-typegen-description = "0.1.0"
|
|
scale-typegen = "0.1.1"
|
|
strip-ansi-escapes = "0.2.0"
|
|
|
|
# Light client support:
|
|
smoldot = { version = "0.16.0", default-features = false }
|
|
smoldot-light = { version = "0.14.0", default-features = false }
|
|
tokio-stream = "0.1.14"
|
|
futures-util = "0.3.30"
|
|
rand = "0.8.5"
|
|
pin-project = "1.1.4"
|
|
|
|
# Light client wasm:
|
|
web-sys = { version = "0.3.67", features = ["BinaryType", "CloseEvent", "MessageEvent", "WebSocket"] }
|
|
wasm-bindgen = "0.2.90"
|
|
send_wrapper = "0.6.0"
|
|
js-sys = "0.3.67"
|
|
wasm-bindgen-futures = "0.4.38"
|
|
futures-timer = "3"
|
|
instant = { version = "0.1.12", default-features = false }
|
|
tokio-util = "0.7.10"
|
|
|
|
# Substrate crates:
|
|
sp-core = { version = "28.0.0", default-features = false }
|
|
sp-core-hashing = { version = "15.0.0", default-features = false }
|
|
sp-runtime = "31.0.0"
|
|
sp-keyring = "31.0.0"
|
|
|
|
# Subxt workspace crates:
|
|
subxt = { version = "0.34.0", path = "subxt", default-features = false }
|
|
subxt-macro = { version = "0.34.0", path = "macro" }
|
|
subxt-metadata = { version = "0.34.0", path = "metadata" }
|
|
subxt-codegen = { version = "0.34.0", path = "codegen" }
|
|
subxt-signer = { version = "0.34.0", path = "signer" }
|
|
subxt-lightclient = { version = "0.34.0", path = "lightclient", default-features = false }
|
|
test-runtime = { path = "testing/test-runtime" }
|
|
substrate-runner = { path = "testing/substrate-runner" }
|
|
|
|
# subxt-signer deps that I expect aren't useful anywhere else:
|
|
bip39 = "2.0.0"
|
|
hmac = "0.12.1"
|
|
pbkdf2 = { version = "0.12.2", default-features = false }
|
|
schnorrkel = "0.11.4"
|
|
secp256k1 = "0.28.1"
|
|
secrecy = "0.8.0"
|
|
sha2 = "0.10.8"
|
|
zeroize = { version = "1", default-features = false }
|
|
|
|
[profile.dev.package.smoldot-light]
|
|
opt-level = 2
|
|
[profile.test.package.smoldot-light]
|
|
opt-level = 2
|
|
[profile.dev.package.smoldot]
|
|
opt-level = 2
|
|
[profile.test.package.smoldot]
|
|
opt-level = 2
|