Skip to content

Commit 866e9d2

Browse files
NODE-53, feature: implement bifrost-polkadot-v0.9.43 (#22)
* NODE-37, chore: change branch to v0.9.42 * NODE-37, fix: remove deprecated Store trait * NODE-37, fix: remove deprecated Weight::from_ref_time * NODE-37, fix: rename grandpa crates * NODE-37, feature: update rpc services * NODE-37, feature: apply evm + weight v2 support * NODE-37, feature: apply runtime impl updates * NODE-37, feature: apply frontier backend & rpc updates * NODE-37, feature: allow zero ed * NODE-37, test: fix to explicit weight v2 values * NODE-37, fix: remove explicit features on root Cargo.toml * NODE-37, fix: set toolchain to stable version * NODE-37, feature: release v1.2.4 * NODE-37, feature: release v1.2.4 * NODE-37, fix: remove unstable codes * NODE-53, feature: apply bifrost-polkadot-v0.9.43 * NODE-53, feature: upgrade rust toolchain * NODE-53, chore: format toml * NODE-53, fix: remove unwraps * NODE-53, fix: create polkadot api with rpc port * NODE-53, chore: re-format code * NODE-53, feature: increase runtime versions * NODE-53, chore: fix comment typo Co-authored-by: Min-seong Kwon <kwonarseus@gmail.com> --------- Co-authored-by: Min-seong Kwon <kwonarseus@gmail.com>
1 parent 8d021e2 commit 866e9d2

84 files changed

Lines changed: 4850 additions & 2457 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@ git-fetch-with-cli = true
1010
# RUSTFLAGS= cargo clippy
1111
[target.'cfg(feature = "cargo-clippy")']
1212
rustflags = [
13-
"-Aclippy::all",
14-
"-Dclippy::correctness",
15-
"-Dclippy::complexity",
16-
"-Dclippy::unwrap_used",
17-
"-Aclippy::if-same-then-else",
18-
"-Aclippy::clone-double-ref",
19-
"-Aclippy::clone_on_copy", # Too common
20-
"-Aclippy::needless_lifetimes", # Backward compat?
21-
"-Aclippy::zero-prefixed-literal", # 00_1000_000
22-
"-Aclippy::type_complexity", # raison d'etre
23-
"-Aclippy::nonminimal-bool", # maybe
24-
"-Aclippy::borrowed-box", # Reasonable to fix this one
25-
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
26-
"-Aclippy::unnecessary_cast", # Types may change
27-
"-Aclippy::identity-op", # One case where we do 0 +
28-
"-Aclippy::useless_conversion", # Types may change
29-
"-Aclippy::unit_arg", # styalistic.
30-
"-Aclippy::option-map-unit-fn", # styalistic
31-
"-Aclippy::bind_instead_of_map", # styalistic
32-
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
33-
"-Aclippy::eq_op", # In tests we test equality.
34-
"-Aclippy::while_immutable_condition", # false positives
35-
"-Aclippy::needless_option_as_deref", # false positives
36-
"-Aclippy::derivable_impls", # false positives
37-
"-Aclippy::explicit_counter_loop" # irrelevant
13+
"-Aclippy::all",
14+
"-Dclippy::correctness",
15+
"-Dclippy::complexity",
16+
"-Dclippy::unwrap_used",
17+
"-Aclippy::if-same-then-else",
18+
"-Aclippy::clone-double-ref",
19+
"-Aclippy::clone_on_copy", # Too common
20+
"-Aclippy::needless_lifetimes", # Backward compat?
21+
"-Aclippy::zero-prefixed-literal", # 00_1000_000
22+
"-Aclippy::type_complexity", # raison d'etre
23+
"-Aclippy::nonminimal-bool", # maybe
24+
"-Aclippy::borrowed-box", # Reasonable to fix this one
25+
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
26+
"-Aclippy::unnecessary_cast", # Types may change
27+
"-Aclippy::identity-op", # One case where we do 0 +
28+
"-Aclippy::useless_conversion", # Types may change
29+
"-Aclippy::unit_arg", # styalistic.
30+
"-Aclippy::option-map-unit-fn", # styalistic
31+
"-Aclippy::bind_instead_of_map", # styalistic
32+
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
33+
"-Aclippy::eq_op", # In tests we test equality.
34+
"-Aclippy::while_immutable_condition", # false positives
35+
"-Aclippy::needless_option_as_deref", # false positives
36+
"-Aclippy::derivable_impls", # false positives
37+
"-Aclippy::explicit_counter_loop", # irrelevant
3838
]

0 commit comments

Comments
 (0)