mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 14:07:58 +00:00
07d5c9d8e8
closes #1757
38 lines
1.1 KiB
TOML
38 lines
1.1 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-path = ["sp-io", "sc-executor-common", "sp-state-machine", "sp-maybe-compressed-blob", "sc-executor"]
|
|
|
|
[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, features = ["fetch-metadata"] }
|
|
scale-typegen = { workspace = true }
|
|
sc-executor = { workspace = true, optional = true }
|
|
sp-maybe-compressed-blob = { workspace = true, optional = true }
|
|
sp-state-machine = { workspace = true, optional = true }
|
|
sp-io = { workspace = true, optional = true }
|
|
sc-executor-common = { workspace = true, optional = true }
|
|
|
|
[lints]
|
|
workspace = true |