mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 07:58:02 +00:00
e9be43aaff
* lib: Export `GenericError` to avoid linking to private items Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Bump version to v0.17.0 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * doc: Add crates to bump Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Update changelog Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * changelog: Add new line between title and list Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * releasing: Remove extra closing bracket Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * releasing: Fix cargo install typo for cargo-hack Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Remove subxt version from macro and test-runtime Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * releasing: Change PR link to sort in descending order Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * changelog: Add missing PR Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
29 lines
885 B
TOML
29 lines
885 B
TOML
[package]
|
|
name = "subxt-codegen"
|
|
version = "0.17.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
license = "GPL-3.0"
|
|
repository = "https://github.com/paritytech/subxt"
|
|
documentation = "https://docs.rs/subxt-codegen"
|
|
homepage = "https://www.parity.io/"
|
|
description = "Generate an API for interacting with a substrate node from FRAME metadata"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.49"
|
|
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }
|
|
darling = "0.13.0"
|
|
frame-metadata = "14.0"
|
|
heck = "0.3.2"
|
|
proc-macro2 = "1.0.24"
|
|
proc-macro-crate = "0.1.5"
|
|
proc-macro-error = "1.0.4"
|
|
quote = "1.0.8"
|
|
syn = "1.0.58"
|
|
scale-info = { version = "1.0.0", features = ["bit-vec"] }
|
|
|
|
[dev-dependencies]
|
|
bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] }
|
|
pretty_assertions = "1.0.0"
|