mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
9fb22ce28d
* cargo update * Update to latest ctrlc crate * Update vergen * Update to latest pretty_assertions * Update log * Update parking_lot * Update hex-rustc
83 lines
3.8 KiB
TOML
83 lines
3.8 KiB
TOML
[package]
|
|
name = "polkadot-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
bitvec = { version = "0.8", default-features = false, features = ["alloc"] }
|
|
rustc-hex = { version = "2.0.1", default-features = false }
|
|
log = { version = "0.3", optional = true }
|
|
serde = { version = "1.0", default-features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
safe-mix = { version = "1.0", default-features = false}
|
|
polkadot-primitives = { path = "../primitives", default-features = false }
|
|
parity-codec = { version = "3.0", default-features = false }
|
|
parity-codec-derive = { version = "3.0", default-features = false }
|
|
substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-std = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-io = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-support = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
substrate-inherents = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-aura = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-balances = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-consensus = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-council = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-democracy = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-executive = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-indices = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-session = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-sudo = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-system = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-treasury = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-upgrade-key = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-version = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.1.0"
|
|
libsecp256k1 = "0.2.1"
|
|
tiny-keccak = "1.4.2"
|
|
substrate-keyring = { git = "https://github.com/paritytech/substrate" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bitvec/std",
|
|
"polkadot-primitives/std",
|
|
"rustc-hex/std",
|
|
"parity-codec/std",
|
|
"parity-codec-derive/std",
|
|
"substrate-primitives/std",
|
|
"substrate-client/std",
|
|
"substrate-inherents/std",
|
|
"sr-std/std",
|
|
"sr-io/std",
|
|
"srml-support/std",
|
|
"srml-balances/std",
|
|
"srml-consensus/std",
|
|
"srml-council/std",
|
|
"srml-democracy/std",
|
|
"srml-executive/std",
|
|
"srml-grandpa/std",
|
|
"srml-indices/std",
|
|
"sr-primitives/std",
|
|
"srml-session/std",
|
|
"srml-staking/std",
|
|
"srml-sudo/std",
|
|
"srml-system/std",
|
|
"srml-timestamp/std",
|
|
"srml-treasury/std",
|
|
"srml-upgrade-key/std",
|
|
"sr-version/std",
|
|
"serde_derive",
|
|
"serde/std",
|
|
"log",
|
|
"safe-mix/std"
|
|
]
|