Skip to content

Commit 8abc642

Browse files
2 parents 330c28f + 65c0549 commit 8abc642

Some content is hidden

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

77 files changed

+489
-1866
lines changed

.cargo/config.toml

100644100755
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,39 @@
11
[build]
22
target-dir = "Target"
3+
rustdocflags = [
4+
"-Zunstable-options",
5+
"--enable-index-page",
6+
]
7+
8+
[net]
9+
git-fetch-with-cli = true
310

411
[cargo-new]
512
vcs = "git"
613

14+
[unstable]
15+
rustdoc-scrape-examples = true
16+
17+
[profile.dev]
18+
incremental = true
19+
split-debuginfo = "unpacked"
20+
debug = 0
21+
strip = "debuginfo"
22+
panic = "abort"
23+
24+
[profile.dev.package."*"]
25+
opt-level = 3
26+
727
[profile.release]
828
opt-level = 3
929
codegen-units = 1
1030
debug = false
1131
lto = true
1232
panic = "abort"
1333
strip = true
34+
35+
[target.aarch64-apple-darwin]
36+
rustflags = ["-Zshare-generics=y"]
37+
38+
[target.x86_64-apple-darwin]
39+
rustflags = ["-Zshare-generics=y"]

.clang-format

100644100755
File mode changed.

.csharpierrc

100644100755
File mode changed.

.editorconfig

100644100755
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ indent_style = tab
99

1010
[*.{yaml,yml}]
1111
indent_style = space
12+
13+
[*.rs]
14+
# indent_style = unset
15+
# indent_size = unset
16+
# tab_width = unset
17+
end_of_line = unset
18+
# trim_trailing_whitespace = unset
19+
insert_final_newline = unset

.env.example

100644100755
File mode changed.

.gitattributes

100644100755
File mode changed.

.github/FUNDING.yml

100644100755
File mode changed.

.github/Update.md

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Update: Sun Aug 3 01:15:53 UTC 2025
1+
Update: Mon Jan 26 01:14:22 UTC 2026

.github/dependabot.yml

100644100755
File mode changed.

.github/workflows/Auto.yml

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
VCPKG_DISABLE_METRICS: 1
5252

5353
steps:
54-
- uses: actions/checkout@v4.2.2
54+
- uses: actions/checkout@v6.0.1
5555

5656
- run: |
5757
echo "Update: $(date)" > .github/Update.md
@@ -62,7 +62,7 @@ jobs:
6262
git add .
6363
git commit -a --allow-empty-message -m ""
6464
65-
- uses: ad-m/github-push-action@v0.8.0
65+
- uses: ad-m/github-push-action@v1.0.0
6666
with:
6767
github_token: ${{ secrets.GITHUB_TOKEN }}
6868
branch: Current

0 commit comments

Comments
 (0)