Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
4meta5 committed Dec 20, 2023
1 parent d4107ba commit 3c7c0ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ edition = "2021"
license = "GPL-3.0-only"
repository = "https://github.com/OpenZeppelin/polkadot-runtime-template"

[workspace.lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"
large_enum_variant = "allow"

[workspace.dependencies]
clap = { version = "4.4.6", features = [ "derive" ] }
color-print = "0.3.4"
Expand Down Expand Up @@ -120,9 +125,6 @@ cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-
pallet-collator-selection = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0", default-features = false }
parachain-info = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0", default-features = false }

[workspace.lints.clippy]
large_enum_variant = "allow"

[profile.production]
codegen-units = 1
inherits = "release"
Expand Down
7 changes: 2 additions & 5 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ license = { workspace = true }
publish = false
repository = { workspace = true }
version = "0.1.0"
lints = { workspace = true }

[dependencies]
clap = { workspace = true }
Expand Down Expand Up @@ -89,8 +90,4 @@ try-runtime = [
"parachain-template-runtime/try-runtime",
"polkadot-cli/try-runtime",
"sp-runtime/try-runtime",
]


[lints]
workspace = true
]

0 comments on commit 3c7c0ea

Please sign in to comment.