Skip to content

Commit

Permalink
Initial v0.1 PoC
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-axon committed Feb 22, 2023
0 parents commit 1897904
Show file tree
Hide file tree
Showing 191 changed files with 7,881 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Cargo
# will have compiled files and executables
/target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
# Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# Standard vscode ignore options
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix
64 changes: 64 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'chipolata'",
"cargo": {
"args": [
"build",
"--bin=chipolata",
"--package=chipolata"
],
"filter": {
"name": "chipolata",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'chipolata'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=chipolata"
],
"filter": {
"name": "chipolata",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'chipolata'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=chipolata",
"--package=chipolata"
],
"filter": {
"name": "chipolata",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 1897904

Please sign in to comment.