mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-24 05:27:59 +00:00
523534464f
* refactor: Explicitly indicate which crates should be published * chore: Add a convenience publish.sh script * Update scripts/publish.sh Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com> * Update scripts/publish.sh Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com> * fix: Don't use unsupported -P flag in BSD grep in publish.sh Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com>
24 lines
561 B
TOML
24 lines
561 B
TOML
[package]
|
|
name = "subxt-macro"
|
|
version = "0.25.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
publish = true
|
|
autotests = false
|
|
|
|
license = "Apache-2.0 OR GPL-3.0"
|
|
repository = "https://github.com/paritytech/subxt"
|
|
documentation = "https://docs.rs/subxt"
|
|
homepage = "https://www.parity.io/"
|
|
description = "Generate types and helpers for interacting with Substrate runtimes."
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
darling = "0.14.0"
|
|
proc-macro-error = "1.0.4"
|
|
syn = "1.0.58"
|
|
|
|
subxt-codegen = { path = "../codegen", version = "0.25.0" }
|