mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 05:37:58 +00:00
8b23b2b83c
* parachain rpc lists * guide almost done * add the 3rd config * subscribe to block with configs * delete table file * spaces instead of tabs * remove original ajuna example * zombienet setup * nft minting example * include port, use different names * link the example from the book * format book * add config creation to book, simplify example structure * fix the nft creation script * fix doc ref * fixing links to foreign crates * fix table formatting * include nits * move more docs to book, and simplify parachain-example * another pass over docs and link to exampels from guide * nit: adjust comment to numbers * teeny README fix for parachain-example * fix command in readme * add CI for examples and fix parachain-example bug I left in * add target arch * cargo fmt * make CI not fail * remove index from docs --------- Co-authored-by: James Wilson <james@jsdw.me>
124 lines
3.8 KiB
TOML
124 lines
3.8 KiB
TOML
[workspace]
|
|
members = [
|
|
"cli",
|
|
"codegen",
|
|
"lightclient",
|
|
"testing/substrate-runner",
|
|
"testing/test-runtime",
|
|
"testing/integration-tests",
|
|
"testing/ui-tests",
|
|
"macro",
|
|
"metadata",
|
|
"signer",
|
|
"subxt"
|
|
]
|
|
|
|
# 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.29.0"
|
|
rust-version = "1.64.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.dependencies]
|
|
assert_matches = "1.5.0"
|
|
base58 = { version = "0.2.0" }
|
|
bitvec = { version = "1", default-features = false }
|
|
blake2 = { version = "0.10.4", default-features = false }
|
|
clap = { version = "4.3.11", 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.0"
|
|
derivative = "2.2.0"
|
|
either = "1.8.1"
|
|
frame-metadata = { version = "16.0.0", default-features = false, features = ["current", "std"] }
|
|
futures = { version = "0.3.27", 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" }
|
|
jsonrpsee = { version = "0.16" }
|
|
pretty_assertions = "1.4.0"
|
|
primitive-types = { version = "0.12.1", default-features = false, features = ["codec", "scale-info", "serde"] }
|
|
proc-macro-error = "1.0.4"
|
|
proc-macro2 = "1.0.66"
|
|
quote = "1.0.31"
|
|
regex = "1.9.1"
|
|
scale-info = "2.9.0"
|
|
scale-value = "0.10.0"
|
|
scale-bits = "0.3"
|
|
scale-decode = "0.7.0"
|
|
scale-encode = "0.3.0"
|
|
serde = { version = "1.0.171" }
|
|
serde_json = { version = "1.0.100" }
|
|
syn = { version = "2.0.15", features = ["full", "extra-traits"] }
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.29", default-features = false }
|
|
tracing = "0.1.34"
|
|
tracing-wasm = "0.2.1"
|
|
tracing-subscriber = "0.3.17"
|
|
trybuild = "1.0.81"
|
|
wabt = "0.10.0"
|
|
wasm-bindgen-test = "0.3.24"
|
|
which = "4.4.0"
|
|
|
|
# Light client support:
|
|
smoldot = { version = "0.8.0", default-features = false }
|
|
smoldot-light = { version = "0.6.0", default-features = false }
|
|
tokio-stream = "0.1.14"
|
|
futures-util = "0.3.28"
|
|
|
|
# Light client wasm:
|
|
web-sys = { version = "0.3.61", features = ["BinaryType", "CloseEvent", "MessageEvent", "WebSocket"] }
|
|
wasm-bindgen = "0.2.84"
|
|
send_wrapper = "0.6.0"
|
|
js-sys = "0.3.61"
|
|
wasm-bindgen-futures = "0.4.19"
|
|
futures-timer = "3"
|
|
instant = { version = "0.1.12", default-features = false }
|
|
tokio-util = "0.7.8"
|
|
|
|
# Substrate crates:
|
|
sp-core = { version = "21.0.0", default-features = false }
|
|
sp-core-hashing = "9.0.0"
|
|
sp-runtime = "24.0.0"
|
|
sp-keyring = "24.0.0"
|
|
sp-version = "22.0.0"
|
|
|
|
# Subxt workspace crates:
|
|
subxt = { version = "0.29.0", path = "subxt", default-features = false }
|
|
subxt-macro = { version = "0.29.0", path = "macro" }
|
|
subxt-metadata = { version = "0.29.0", path = "metadata" }
|
|
subxt-codegen = { version = "0.29.0", path = "codegen" }
|
|
subxt-signer = { version = "0.29.0", path = "signer" }
|
|
subxt-lightclient = { version = "0.29.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.10.2"
|
|
secp256k1 = "0.27.0"
|
|
secrecy = "0.8.0"
|
|
sha2 = "0.10.6"
|
|
zeroize = { version = "1", default-features = false }
|