cleanup deps (#6242)

This commit is contained in:
Xiliang Chen
2022-11-08 00:09:33 +13:00
committed by GitHub
parent f8c3a658b2
commit e3054b6149
2 changed files with 16 additions and 23 deletions
-3
View File
@@ -6846,7 +6846,6 @@ name = "polkadot-primitives"
version = "0.9.31" version = "0.9.31"
dependencies = [ dependencies = [
"bitvec", "bitvec",
"frame-system",
"hex-literal", "hex-literal",
"parity-scale-codec", "parity-scale-codec",
"parity-util-mem", "parity-util-mem",
@@ -6866,8 +6865,6 @@ dependencies = [
"sp-runtime", "sp-runtime",
"sp-staking", "sp-staking",
"sp-std", "sp-std",
"sp-trie",
"sp-version",
] ]
[[package]] [[package]]
+16 -20
View File
@@ -5,29 +5,28 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
serde = { version = "1.0.137", optional = true, features = ["derive"] } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
scale-info = { version = "2.1.2", default-features = false, features = ["bit-vec", "derive"] } hex-literal = "0.3.4"
parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } parity-util-mem = { version = "0.12.0", default-features = false, optional = true }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } scale-info = { version = "2.1.2", default-features = false, features = ["bit-vec", "derive"] }
serde = { version = "1.0.137", optional = true, features = ["derive"] }
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
polkadot-parachain = { path = "../parachain", default-features = false } sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
polkadot-core-primitives = { path = "../core-primitives", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false }
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
hex-literal = "0.3.4"
parity-util-mem = { version = "0.12.0", default-features = false, optional = true }
[features] [features]
default = ["std"] default = ["std"]
@@ -37,14 +36,12 @@ std = [
"scale-info/std", "scale-info/std",
"primitives/std", "primitives/std",
"inherents/std", "inherents/std",
"trie/std",
"sp-api/std", "sp-api/std",
"sp-authority-discovery/std", "sp-authority-discovery/std",
"sp-consensus-slots/std", "sp-consensus-slots/std",
"sp-keystore", "sp-keystore",
"sp-std/std", "sp-std/std",
"sp-io/std", "sp-io/std",
"sp-version/std",
"sp-staking/std", "sp-staking/std",
"sp-arithmetic/std", "sp-arithmetic/std",
"runtime_primitives/std", "runtime_primitives/std",
@@ -53,6 +50,5 @@ std = [
"polkadot-parachain/std", "polkadot-parachain/std",
"polkadot-core-primitives/std", "polkadot-core-primitives/std",
"bitvec/std", "bitvec/std",
"frame-system/std",
] ]
runtime-benchmarks = [] runtime-benchmarks = []