Skip to content

Commit

Permalink
Separate nix and windows impls
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostassoid committed Aug 1, 2019
1 parent 076f5c0 commit 61e5676
Show file tree
Hide file tree
Showing 10 changed files with 1,265 additions and 1,188 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target
**/*.rs.bk
/.idea
/target
**/*.rs.bk
/.idea
*.iml
68 changes: 34 additions & 34 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "cargo run",
"type": "shell",
"command": "cargo run list",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "cargo test",
"type": "shell",
"command": "cargo test",
"problemMatcher": [
"$rustc"
]
},
{
"label": "cargo build",
"type": "shell",
"command": "cargo build",
"problemMatcher": [
"$rustc"
]
}
]
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "cargo run",
"type": "shell",
"command": "cargo run list",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "cargo test",
"type": "shell",
"command": "cargo test",
"problemMatcher": [
"$rustc"
]
},
{
"label": "cargo build",
"type": "shell",
"command": "cargo build",
"problemMatcher": [
"$rustc"
]
}
]
}
Loading

0 comments on commit 61e5676

Please sign in to comment.