mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 12:28:01 +00:00
a869258fc5
* bump substrate version * bump version to 0.7.13
74 lines
3.8 KiB
TOML
74 lines
3.8 KiB
TOML
[package]
|
|
name = "polkadot-runtime-common"
|
|
version = "0.7.13"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] }
|
|
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
|
|
log = { version = "0.3.9", optional = true }
|
|
rustc-hex = { version = "2.0.1", default-features = false }
|
|
serde = { version = "1.0.102", default-features = false }
|
|
serde_derive = { version = "1.0.102", optional = true }
|
|
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
|
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
|
|
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
|
|
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
|
|
polkadot-parachain = { path = "../../parachain", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.2.1"
|
|
libsecp256k1 = "0.3.2"
|
|
tiny-keccak = "1.5.0"
|
|
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
trie-db = "0.18.0"
|
|
serde_json = "1.0.41"
|
|
|
|
[features]
|
|
default = []
|
|
no_std = []
|
|
std = [
|
|
"bitvec/std",
|
|
"primitives/std",
|
|
"rustc-hex/std",
|
|
"codec/std",
|
|
"inherents/std",
|
|
"sp-core/std",
|
|
"polkadot-parachain/std",
|
|
"sp-api/std",
|
|
"rstd/std",
|
|
"sp-io/std",
|
|
"frame-support/std",
|
|
"authorship/std",
|
|
"balances/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"session/std",
|
|
"staking/std",
|
|
"system/std",
|
|
"timestamp/std",
|
|
"serde_derive",
|
|
"serde/std",
|
|
"log",
|
|
]
|