mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17:58 +00:00
36 lines
837 B
TOML
36 lines
837 B
TOML
[package]
|
|
name = "sp-api-proc-macro"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Macros for declaring and implementing runtime apis."
|
|
documentation = "https://docs.rs/sp-api-proc-macro"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0.28"
|
|
syn = { version = "2.0.39", features = ["extra-traits", "fold", "full", "visit"] }
|
|
proc-macro2 = "1.0.56"
|
|
blake2 = { version = "0.10.4", default-features = false }
|
|
proc-macro-crate = "2.0.1"
|
|
expander = "2.0.0"
|
|
Inflector = "0.11.4"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
|
|
[features]
|
|
# Required for the doc tests
|
|
default = ["std"]
|
|
std = ["blake2/std"]
|
|
no-metadata-docs = []
|
|
frame-metadata = []
|