-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove unused deps and add missing feats for all tomls (#1223)
* fix: add missing try-runtime feat to all tomls * fix: add missing std, bench feats to all tomls * fix: patch PureStake/Frontier * chore: bump nix * refactor: normalize apostrophes in toml * fmt: taplo * fix: typo * revert: frontier patch * refactor: remove unused deps * fix: investment toml boilerplate * refactor: fix uncaught stuff by taplo * chore: bump nix after merge
- Loading branch information
Showing
37 changed files
with
1,195 additions
and
1,091 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
[package] | ||
authors = ["Centrifuge <admin@centrifuge.io>"] | ||
description = 'Proofs' | ||
edition = '2021' | ||
description = "Proofs" | ||
edition = "2021" | ||
license = "LGPL-3.0" | ||
name = 'proofs' | ||
name = "proofs" | ||
repository = "https://github.com/centrifuge/centrifuge-chain" | ||
version = '2.0.0' | ||
version = "2.0.0" | ||
|
||
[package.metadata.docs.rs] | ||
targets = ['x86_64-unknown-linux-gnu'] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[dependencies] | ||
codec = { package = 'parity-scale-codec', version = '3.0.0', features = ['derive'], default-features = false } | ||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false } | ||
scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } | ||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.32" } | ||
|
||
[dev-dependencies] | ||
sp-core = { git = "https://github.com/paritytech/substrate", default-features = true, branch = "polkadot-v0.9.32" } | ||
|
||
[features] | ||
default = ['std'] | ||
default = ["std"] | ||
std = [ | ||
'codec/std', | ||
"codec/std", | ||
"sp-std/std", | ||
"scale-info/std", | ||
] |
Oops, something went wrong.