mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 14:31:02 +00:00
f344e15bf8
* Remove rustc dependency from ed25519 and refactor a little. * Runtime support provides more extensive test-key functionality. * Additional APIs for ed25519 stuff. * Extensive test for test-runtime. * Fixes for the new test key API. * Additional convenience for tests * Take advantage of more convenient API. * Redo formating. * Remove old test identities. * Remove boilerplate, add test. * Refactor out unneeded code. * Clean up algo for determining authorities. * Remove unneeded API. * Make `to_*` consume * Only export keyring when testing * Fix build & warning * Extract Keyring into separate library. * Add tests for Keyring and a trait-based API. * Address grumbles.
28 lines
817 B
TOML
28 lines
817 B
TOML
[package]
|
|
name = "substrate-runtime-support"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ed25519 = { path = "../ed25519", optional = true }
|
|
hex-literal = { version = "0.1.0", optional = true }
|
|
substrate-runtime-std = { path = "../runtime-std", default_features = false }
|
|
substrate-runtime-io = { path = "../runtime-io", default_features = false }
|
|
environmental = { path = "../environmental", optional = true }
|
|
substrate-primitives = { path = "../primitives", default_features = false }
|
|
substrate-codec = { path = "../codec", default_features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"ed25519",
|
|
"hex-literal",
|
|
"environmental",
|
|
"substrate-primitives/std",
|
|
"substrate-runtime-io/std",
|
|
"substrate-codec/std",
|
|
"substrate-runtime-std/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|