mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
010e63116f
* Add simple benchmark for the runtime api * Make the executor support native calls * Some documentation * Hide behind `feature = "std"` * Rework the native calls * Make all tests compile again * Make every parameter using the Block serialized/deserialized in the native call * Forward `UnwindSafe` requirement * Remove debug stuff * Add some documentation * Fixes warnings * Fixes errors after master rebase * Fixes compilation after master rebase * Fixes compilation after rebase
26 lines
594 B
TOML
26 lines
594 B
TOML
[package]
|
|
name = "sr-api-macros"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "0.6"
|
|
syn = { version = "^0.15.22", features = [ "full", "fold", "extra-traits", "visit" ] }
|
|
proc-macro2 = "0.4"
|
|
blake2-rfc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
substrate-client = { path = "../client" }
|
|
substrate-test-client = { path = "../test-client" }
|
|
sr-primitives = { path = "../sr-primitives" }
|
|
sr-version = { path = "../sr-version" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
criterion = "0.2"
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|