mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 00:07:57 +00:00
dc0795b3b9
* macros: feature-gate jsonrpsee/fetch metadata url * make CI happy * Update codegen/src/error.rs * extract `fetch-metdata` to separate crate * add missing license headers * introduce subxt-utils crate * add missing files * codegen: remove unused hex crate * fix test build * move subxt_utils -> subxt_utils_fetchmetadata * cargo fmt * runtime-path -> runtime-metadata-path * Update utils/fetch-metadata/src/lib.rs
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "subxt-macro"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
autotests = false
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "Generate types and helpers for interacting with Substrate runtimes."
|
|
|
|
[features]
|
|
web = ["subxt-codegen/web"]
|
|
runtime-metadata-path = ["polkadot-sdk"]
|
|
runtime-metadata-insecure-url = ["subxt-utils-fetchmetadata/url"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", workspace = true }
|
|
darling = { workspace = true }
|
|
proc-macro-error2 = { workspace = true }
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
subxt-codegen = { workspace = true }
|
|
subxt-utils-fetchmetadata = { workspace = true }
|
|
scale-typegen = { workspace = true }
|
|
polkadot-sdk = { workspace = true, optional = true, features = ["sp-io", "sc-executor-common", "sp-state-machine", "sp-maybe-compressed-blob", "sc-executor"] }
|
|
|
|
[lints]
|
|
workspace = true |