-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: synchronous remote index dropping (#414)
* feat: synchronous remote index dropping Signed-off-by: usamoi <[email protected]> * fix: comments Signed-off-by: usamoi <[email protected]> --------- Signed-off-by: usamoi <[email protected]>
- Loading branch information
Showing
180 changed files
with
6,944 additions
and
7,028 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
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,28 @@ | ||
name: Style check | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
merge_group: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run: | ||
name: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Typos check | ||
uses: crate-ci/typos@master | ||
|
||
- name: Rust format check | ||
run: cargo fmt --check | ||
|
||
- name: Toml format check | ||
run: | | ||
curl -fsSL https://github.com/tamasfe/taplo/releases/download/0.8.1/taplo-full-linux-x86_64.gz | gzip -d - | install -m 755 /dev/stdin /usr/local/bin/taplo | ||
taplo fmt --check |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
formatting.indent_string = " " | ||
|
||
[[rule]] | ||
include = ["**/Cargo.toml"] | ||
keys = [ | ||
"dependencies", | ||
"dev-dependencies", | ||
"lints", | ||
"target.*.dependencies", | ||
"workspace.dependencies", | ||
"workspace.lints", | ||
] | ||
formatting.reorder_arrays = true | ||
formatting.reorder_keys = true |
Oops, something went wrong.