mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 04:37:57 +00:00
567122fab5
* Make runtime macros work without required `macro_use` * Adds node-template * Adds node-template-release tool * Fixes building `node-template` and improve the release * Add `profile.release` by release script to remove warning * Adds script for releasing the node template * Fixes compilation after master merge * Port node-template to edition 2018 * Remove license * Fixes compilation after master merge * Add `node-template-release.sh` into the CI * WIP Ci integrate node template (#1701) * copy artifacts to s3 bucket latest path * typo * bucket name * Update wasm files
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "srml-support"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
hex-literal = { version = "0.1.0", optional = true }
|
|
serde = { version = "1.0", default-features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
parity-codec = { version = "3.0", default-features = false }
|
|
parity-codec-derive = { version = "3.0", default-features = false }
|
|
srml-metadata = { path = "../metadata", default-features = false }
|
|
sr-std = { path = "../../core/sr-std", default-features = false }
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../core/inherents", default-features = false }
|
|
srml-support-procedural = { path = "./procedural" }
|
|
paste = "0.1"
|
|
once_cell = { version = "0.1.6", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"hex-literal",
|
|
"once_cell",
|
|
"serde/std",
|
|
"serde_derive",
|
|
"runtime_io/std",
|
|
"parity-codec/std",
|
|
"sr-std/std",
|
|
"sr-primitives/std",
|
|
"srml-metadata/std",
|
|
"inherents/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|