forked from zkcrypto/bls12_381
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: Update clippy, toolchain, dependabot (zkcrypto#5) * chore: Fix CI
- Loading branch information
1 parent
7b025c4
commit cc88a3b
Showing
12 changed files
with
240 additions
and
274 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
[alias] | ||
# Collection of project wide clippy lints. This is done via an alias because | ||
# clippy doesn't currently allow for specifiying project-wide lints in a | ||
# configuration file. This is a similar workaround to the ones presented here: | ||
# <https://github.com/EmbarkStudios/rust-ecosystem/issues/59> | ||
xclippy = [ | ||
"clippy", "--workspace", "--all-targets", "--all-features", "--", | ||
"-Wclippy::all", | ||
#"-Wclippy::cast_lossless", | ||
#"-Wclippy::checked_conversions", | ||
#"-Wclippy::dbg_macro", | ||
#"-Wclippy::disallowed_methods", | ||
#"-Wclippy::derive_partial_eq_without_eq", | ||
#"-Wclippy::enum_glob_use", | ||
#"-Wclippy::explicit_into_iter_loop", | ||
#"-Wclippy::fallible_impl_from", | ||
#"-Wclippy::filter_map_next", | ||
#"-Wclippy::flat_map_option", | ||
#"-Wclippy::from_iter_instead_of_collect", | ||
#"-Wclippy::implicit_clone", | ||
#"-Wclippy::inefficient_to_string", | ||
#"-Wclippy::invalid_upcast_comparisons", | ||
#"-Wclippy::large_stack_arrays", | ||
#"-Wclippy::large_types_passed_by_value", | ||
#"-Wclippy::macro_use_imports", | ||
#"-Wclippy::manual_assert", | ||
#"-Wclippy::manual_ok_or", | ||
#"-Wclippy::map_flatten", | ||
#"-Wclippy::map_unwrap_or", | ||
#"-Wclippy::match_same_arms", | ||
#"-Wclippy::match_wild_err_arm", | ||
#"-Wclippy::missing_const_for_fn", | ||
#"-Wclippy::needless_borrow", | ||
#"-Wclippy::needless_continue", | ||
#"-Wclippy::needless_for_each", | ||
#"-Wclippy::needless_pass_by_value", | ||
#"-Wclippy::option_option", | ||
#"-Wclippy::same_functions_in_if_condition", | ||
#"-Wclippy::single_match_else", | ||
#"-Wclippy::trait_duplication_in_bounds", | ||
#"-Wclippy::unnecessary_wraps", | ||
#"-Wclippy::unnested_or_patterns", | ||
#"-Wnonstandard_style", | ||
#"-Wrust_2018_idioms", | ||
#"-Wtrivial_numeric_casts", | ||
#"-Wunused_lifetimes", | ||
#"-Wunreachable_pub", | ||
#"-Wtrivial_numeric_casts", | ||
#"-Wunused_qualifications", | ||
"-Aclippy::needless_borrows_for_generic_args", | ||
"-Aclippy::needless_borrow", | ||
"-Aclippy::clone_on_copy", | ||
"-Aclippy::op_ref", | ||
] |
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,14 +1,22 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
timezone: Etc/UTC | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- str4d | ||
assignees: | ||
- str4d | ||
labels: | ||
- "A-CI" | ||
- package-ecosystem: cargo | ||
directory: / | ||
pull-request-branch-name: | ||
separator: "-" | ||
schedule: | ||
interval: weekly | ||
groups: | ||
rust-dependencies: | ||
patterns: | ||
- "*" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
open-pull-requests-limit: 5 | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.56.0" | ||
components = [ "clippy", "rustfmt" ] | ||
channel = "stable" | ||
profile = "default" |
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
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
Oops, something went wrong.