Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
d94cd1cb
Unverified
Commit
d94cd1cb
authored
Apr 28, 2020
by
Bastian Köcher
Committed by
GitHub
Apr 28, 2020
Browse files
Fix some features handling (#1045)
parent
8a3b09f9
Pipeline
#90101
passed with stages
in 29 minutes and 35 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
parachain/Cargo.toml
View file @
d94cd1cb
...
...
@@ -39,7 +39,6 @@ std = [
"sp-core/std"
,
"parking_lot"
,
"log"
,
"sp-runtime-interface"
,
"sp-runtime-interface/std"
,
"sp-externalities"
,
"sc-executor"
,
...
...
runtime/common/Cargo.toml
View file @
d94cd1cb
...
...
@@ -38,23 +38,26 @@ libsecp256k1 = { version = "0.3.2", default-features = false, optional = true }
hex-literal
=
"0.2.1"
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
trie-db
=
"0.20.0"
serde_json
=
"1.0.41"
libsecp256k1
=
"0.3.2"
[features]
default
=
[]
default
=
[
"std"
]
no_std
=
[]
std
=
[
"bitvec/std"
,
"primitives/std"
,
"rustc-hex/std"
,
"codec/std"
,
"log"
,
"rustc-hex/std"
,
"serde_derive"
,
"serde/std"
,
"primitives/std"
,
"inherents/std"
,
"sp-core/std"
,
"sp-api/std"
,
...
...
@@ -70,9 +73,6 @@ std = [
"system/std"
,
"timestamp/std"
,
"vesting/std"
,
"serde_derive"
,
"serde/std"
,
"log"
,
]
runtime-benchmarks
=
[
"libsecp256k1/hmac"
,
...
...
Ghost User
@ghost
mentioned in commit
c7b6628f
·
Apr 28, 2020
mentioned in commit
c7b6628f
mentioned in commit c7b6628f6261d11b4662a3abc2747627afde67b5
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment