Skip to content

Commit d41b3f5

Browse files
committed
tmp commit
1 parent f578a33 commit d41b3f5

22 files changed

Lines changed: 5200 additions & 151 deletions

.cargo/config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[build]
2+
target = "x86_64-unknown-linux-gnu"
3+
4+
[unstable]
5+
build-std = ["core", "alloc", "std"]

.rustfmt.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports_granularity = "Crate"
2+
merge_derives = false

.vscode/launch.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Replay",
9+
"type": "lldb",
10+
"request": "attach",
11+
"targetCreateCommands": [
12+
"target create ${workspaceFolder}/target/x86_64-unknown-linux-gnu/debug/excutor"
13+
],
14+
"processCreateCommands": [
15+
"gdb-remote 127.0.0.1:2345"
16+
],
17+
"reverseDebugging": true
18+
},
19+
{
20+
"type": "lldb",
21+
"request": "launch",
22+
"name": "Debug executable 'excutor'",
23+
"cargo": {
24+
"args": [
25+
"build",
26+
"--bin=excutor",
27+
"--package=excutor"
28+
],
29+
"filter": {
30+
"name": "excutor",
31+
"kind": "bin"
32+
}
33+
},
34+
"args": [],
35+
"cwd": "${workspaceFolder}"
36+
},
37+
{
38+
"type": "lldb",
39+
"request": "launch",
40+
"name": "Debug unit tests in executable 'excutor'",
41+
"cargo": {
42+
"args": [
43+
"test",
44+
"--no-run",
45+
"--bin=excutor",
46+
"--package=excutor"
47+
],
48+
"filter": {
49+
"name": "excutor",
50+
"kind": "bin"
51+
}
52+
},
53+
"args": [],
54+
"cwd": "${workspaceFolder}"
55+
}
56+
]
57+
}

.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"files.associations": {
3+
"stdatomic.h": "c"
4+
},
5+
"python.analysis.typeCheckingMode": "basic",
6+
"python.analysis.autoImportCompletions": true
7+
}

0 commit comments

Comments
 (0)