mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 16:17:59 +00:00
037f9dde10
* docs: Remove safe-mix since is no longer local dependency * docs: Fix existing packages link. Still only includes Substrate Core * docs: Remove empty package Readmes. Remove old docs links. Rename to Readme * docs: Remove link to old docs * misc: Merge latest from master. Renaem to sr-metadata. Fix list of RustDoc package names * Rename substrate-metadata to sr-metadata, since it is in the "srml" subdirectory * Change example to use package name that opens all packages in RustDocs * Fix list of packages names that are available to open in RustDocs * fix typo * fix ordering of CLI options and add missing backslash
35 lines
928 B
TOML
35 lines
928 B
TOML
[package]
|
|
name = "srml-support"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[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 = "2.1", default-features = false }
|
|
srml-metadata = { path = "../metadata", default-features = false }
|
|
sr-std = { path = "../../core/sr-std", default-features = false }
|
|
sr-io = { path = "../../core/sr-io", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
mashup = "0.1.7"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
parity-codec-derive = { version = "2.1" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"hex-literal",
|
|
"serde/std",
|
|
"serde_derive",
|
|
"sr-io/std",
|
|
"parity-codec/std",
|
|
"sr-std/std",
|
|
"sr-primitives/std",
|
|
"srml-metadata/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|