Skip to content

Commit

Permalink
run taplo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Mar 2, 2024
1 parent 3ca46f4 commit ac53a97
Show file tree
Hide file tree
Showing 7 changed files with 224 additions and 225 deletions.
16 changes: 8 additions & 8 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[alias]
build-bajun = "build --release --no-default-features --bin bajun-node"
build-bajun-benchmarks = [ "build-bajun", "--features", "runtime-benchmarks" ]
build-bajun = "build --release --no-default-features --bin bajun-node"
build-bajun-benchmarks = ["build-bajun", "--features", "runtime-benchmarks"]

[target.'cfg(feature = "cargo-clippy")']
rustflags = [
"-Aclippy::derive_partial_eq_without_eq",
"-Aclippy::too_many_arguments",
"-Aclippy::type_complexity",
"-Aclippy::uninlined-format-args",
"-Aclippy::unnecessary_cast",
"-Aclippy::large_enum_variant",
"-Aclippy::derive_partial_eq_without_eq",
"-Aclippy::too_many_arguments",
"-Aclippy::type_complexity",
"-Aclippy::uninlined-format-args",
"-Aclippy::unnecessary_cast",
"-Aclippy::large_enum_variant",
]
2 changes: 1 addition & 1 deletion .maintain/zombienet-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ timeout = 120

[relaychain]
default_command = "./zombienet-tests/bin/polkadot"
default_args = [ "-lparachain=debug" ]
default_args = ["-lparachain=debug"]
chain = "rococo-local"

[[relaychain.nodes]]
Expand Down
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ version = "0.2.2"

[workspace]
resolver = "2"
members = [
"node",
"runtime/bajun",
]
members = ["node", "runtime/bajun"]

[workspace.dependencies]
# General
Expand Down
22 changes: 11 additions & 11 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,17 @@ substrate-build-script-utils = { workspace = true }
[features]
default = []
runtime-benchmarks = [
"cumulus-primitives-core/runtime-benchmarks",
"frame-benchmarking-cli/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"bajun-runtime/runtime-benchmarks",
"polkadot-cli/runtime-benchmarks",
"polkadot-primitives/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"cumulus-primitives-core/runtime-benchmarks",
"frame-benchmarking-cli/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"bajun-runtime/runtime-benchmarks",
"polkadot-cli/runtime-benchmarks",
"polkadot-primitives/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"bajun-runtime/try-runtime",
"polkadot-cli/try-runtime",
"sp-runtime/try-runtime",
"bajun-runtime/try-runtime",
"polkadot-cli/try-runtime",
"sp-runtime/try-runtime",
]
Loading

0 comments on commit ac53a97

Please sign in to comment.