Skip to content

Commit

Permalink
NODE-53, feature: implement bifrost-polkadot-v0.9.43 (#22)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

---------

Co-authored-by: Min-seong Kwon <[email protected]>
  • Loading branch information
dnjscksdn98 and alstjd0921 authored Sep 7, 2023
1 parent 8d021e2 commit 866e9d2
Show file tree
Hide file tree
Showing 84 changed files with 4,850 additions and 2,457 deletions.
50 changes: 25 additions & 25 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@ git-fetch-with-cli = true
# RUSTFLAGS= cargo clippy
[target.'cfg(feature = "cargo-clippy")']
rustflags = [
"-Aclippy::all",
"-Dclippy::correctness",
"-Dclippy::complexity",
"-Dclippy::unwrap_used",
"-Aclippy::if-same-then-else",
"-Aclippy::clone-double-ref",
"-Aclippy::clone_on_copy", # Too common
"-Aclippy::needless_lifetimes", # Backward compat?
"-Aclippy::zero-prefixed-literal", # 00_1000_000
"-Aclippy::type_complexity", # raison d'etre
"-Aclippy::nonminimal-bool", # maybe
"-Aclippy::borrowed-box", # Reasonable to fix this one
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
"-Aclippy::unnecessary_cast", # Types may change
"-Aclippy::identity-op", # One case where we do 0 +
"-Aclippy::useless_conversion", # Types may change
"-Aclippy::unit_arg", # styalistic.
"-Aclippy::option-map-unit-fn", # styalistic
"-Aclippy::bind_instead_of_map", # styalistic
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
"-Aclippy::eq_op", # In tests we test equality.
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::explicit_counter_loop" # irrelevant
"-Aclippy::all",
"-Dclippy::correctness",
"-Dclippy::complexity",
"-Dclippy::unwrap_used",
"-Aclippy::if-same-then-else",
"-Aclippy::clone-double-ref",
"-Aclippy::clone_on_copy", # Too common
"-Aclippy::needless_lifetimes", # Backward compat?
"-Aclippy::zero-prefixed-literal", # 00_1000_000
"-Aclippy::type_complexity", # raison d'etre
"-Aclippy::nonminimal-bool", # maybe
"-Aclippy::borrowed-box", # Reasonable to fix this one
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
"-Aclippy::unnecessary_cast", # Types may change
"-Aclippy::identity-op", # One case where we do 0 +
"-Aclippy::useless_conversion", # Types may change
"-Aclippy::unit_arg", # styalistic.
"-Aclippy::option-map-unit-fn", # styalistic
"-Aclippy::bind_instead_of_map", # styalistic
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
"-Aclippy::eq_op", # In tests we test equality.
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::explicit_counter_loop", # irrelevant
]
Loading

0 comments on commit 866e9d2

Please sign in to comment.