mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-24 04:17:57 +00:00
59d195d4ad
* Update frame-metadata to v15.1.0 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Enable V15 unstable metadata in frame-metadata Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata: Move validation hashing to dedicated file Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Use sp-metadata-ir from substrate to work with metadata Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Revert using sp-metadata-ir in favor of conversion to v15 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata: Convert v14 to v15 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata: Use v15 for validation Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Use v15 for codegen Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata/bench: Use v15 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Adjust to v15 metadata Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Adjust testing Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Improve documentation Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * force CI Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata: Address feedback Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata: Use HASH_LEN Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadta: Remove `LatestRuntimeMetadata` type alias Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * metadata: Remove `metadata_to_latest` to avoid pancis Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "subxt-codegen"
|
|
version = "0.28.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/subxt-codegen"
|
|
homepage.workspace = true
|
|
description = "Generate an API for interacting with a substrate node from FRAME metadata"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full"] }
|
|
darling = "0.14.4"
|
|
frame-metadata = { version = "15.1.0", features = ["v14", "v15-unstable", "std"] }
|
|
heck = "0.4.1"
|
|
proc-macro2 = "1.0.55"
|
|
quote = "1.0.8"
|
|
syn = "1.0.109"
|
|
scale-info = "2.5.0"
|
|
subxt-metadata = { version = "0.28.0", path = "../metadata" }
|
|
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] }
|
|
hex = "0.4.3"
|
|
tokio = { version = "1.27", features = ["macros", "rt-multi-thread"] }
|
|
thiserror = "1.0.40"
|
|
|
|
[dev-dependencies]
|
|
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
|
scale-info = { version = "2.5.0", features = ["bit-vec"] }
|
|
pretty_assertions = "1.0.0"
|