mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
7d5202341b
* basic lint * lint ordering
26 lines
737 B
TOML
26 lines
737 B
TOML
[package]
|
|
name = "sp-version-proc-macro"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Macro for defining a runtime version."
|
|
documentation = "https://docs.rs/sp-api-proc-macro"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
|
|
proc-macro2 = "1.0.37"
|
|
quote = "1.0.10"
|
|
syn = { version = "1.0.82", features = ["full", "fold", "extra-traits", "visit"] }
|
|
|
|
[dev-dependencies]
|
|
sp-version = { version = "5.0.0", path = ".." }
|