Skip to content

Commit e1321d8

Browse files
committed
first commit
0 parents  commit e1321d8

28 files changed

+840605
-0
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.rs text eol=lf
2+
*.toml text eol=lf
3+
*.yml text eol=lf
4+
*.json text eol=lf

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
*.ts

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "lldb",
6+
"request": "launch",
7+
"name": "Debug executable 'json_typings'",
8+
"cargo": {
9+
"args": [
10+
"build",
11+
"--bin=main",
12+
"--package=json_typings"
13+
]
14+
},
15+
"args": ["./data/sample_b.json"],
16+
"cwd": "${workspaceFolder}"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)