Skip to content

Commit 2f149d1

Browse files
committed
Initial commit
0 parents  commit 2f149d1

File tree

15 files changed

+1227
-0
lines changed

15 files changed

+1227
-0
lines changed

.cargo/config.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build]
2+
target = "./armv7a-vex-v5.json"
3+
4+
[unstable]
5+
build-std = ["core", "compiler_builtins", "alloc"]
6+
build-std-features = ["compiler-builtins-mem"]

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
check:
7+
name: Check
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Setup | Checkout
11+
uses: actions/checkout@v2
12+
13+
- name: Setup | Toolchain
14+
uses: dtolnay/rust-toolchain@master
15+
with:
16+
toolchain: nightly-2024-02-07
17+
components: rust-src
18+
19+
- name: Check
20+
uses: actions-rs/cargo@v1
21+
with:
22+
command: check

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"rust-lang.rust-analyzer",
4+
]
5+
}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"rust-analyzer.check.targets": ["${workspaceFolder}/armv7a-vex-v5.json"],
3+
"rust-analyzer.check.allTargets": false,
4+
"rust-analyzer.cargo.features": "all",
5+
"rust-analyzer.check.command": "clippy"
6+
}

0 commit comments

Comments
 (0)