Skip to content

Commit 3d58ad9

Browse files
committed
Change API & bump to v4.0.0
1 parent 0a7fb16 commit 3d58ad9

File tree

8 files changed

+192
-331
lines changed

8 files changed

+192
-331
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ rustflags = [
2323
"-Cforce-frame-pointers=yes",
2424
]
2525
[target.i686-pc-windows-msvc]
26+
linker = "rust-lld.exe"
2627
rustflags = [
2728
# 2025... we can rely on CPUs to be using SSE2... not that it will likely change much in codegen...
2829
"-Ctarget-feature=+sse2",
@@ -41,6 +42,7 @@ rustflags = [
4142
"-Cforce-frame-pointers=yes",
4243
]
4344
[target.x86_64-pc-windows-msvc]
45+
linker = "rust-lld.exe"
4446
rustflags = [
4547
# FUCK YOU TO PEOPLE WITH OLD CPUS
4648
"-Ctarget-cpu=x86-64-v2",

.github/workflows/build-everything.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
targetos: ["linux", "windows"]
25-
targetbits: ["x32", "x64"]
25+
targetbits: ["x32"] # "x64"
2626

2727
steps:
2828
- name: Prepare env
@@ -38,7 +38,7 @@ jobs:
3838
repository: srcwr/srcwrtimer
3939
path: srcwrtimer
4040
- name: Install cargo-binstall
41-
uses: cargo-bins/cargo-binstall@v1.10.12
41+
uses: cargo-bins/cargo-binstall@main
4242
- name: Install the cargo bins we use...
4343
shell: pwsh
4444
run: |

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"rust-analyzer.cargo.target": "i686-pc-windows-msvc",
2+
"rust-analyzer.cargo.target": "i686-unknown-linux-gnu",
33
"rust-analyzer.cargo.extraArgs": ["--release"],
44
"rust-analyzer.check.allTargets": false,
55
"rust-analyzer.checkOnSave.allTargets": false,

0 commit comments

Comments
 (0)