Skip to content

Commit

Permalink
Workshop Release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gcm-explo1t authored and kilimnik committed Nov 10, 2021
1 parent 6894c42 commit 5e60691
Show file tree
Hide file tree
Showing 84 changed files with 15,140 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target
.gitignore
README.md
Dockerfile
Dockerfile.prebuilt
.git
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/

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

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

book-target
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"rust-analyzer.cargo.features": [
]
}
97 changes: 97 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "poc-framework: run level0",
"type": "cargo",
"command": "run",
"args": [
"--bin",
"level0"
],
"group": "build",
"env": {
"RUST_BACKTRACE": "1"
},
"dependsOn": [
"poc-framework: build contracts"
]
},
{
"label": "poc-framework: run level1",
"type": "cargo",
"command": "run",
"args": [
"--bin",
"level1"
],
"group": "build",
"env": {
"RUST_BACKTRACE": "1"
},
"dependsOn": [
"poc-framework: build contracts"
]
},
{
"label": "poc-framework: run level2",
"type": "cargo",
"command": "run",
"args": [
"--bin",
"level2"
],
"group": "build",
"env": {
"RUST_BACKTRACE": "1"
},
"dependsOn": [
"poc-framework: build contracts"
]
},
{
"label": "poc-framework: run level3",
"type": "cargo",
"command": "run",
"args": [
"--bin",
"level3"
],
"group": "build",
"env": {
"RUST_BACKTRACE": "1"
},
"dependsOn": [
"poc-framework: build contracts"
]
},
{
"label": "poc-framework: run level4",
"type": "cargo",
"command": "run",
"args": [
"--bin",
"level4"
],
"group": "build",
"env": {
"RUST_BACKTRACE": "1"
},
"dependsOn": [
"poc-framework: build contracts"
]
},
{
"label": "poc-framework: build contracts",
"type": "cargo",
"command": "build-bpf",
"args": [
"--workspace"
],
"env": {
"RUST_BACKTRACE": "1"
},
"group": "build",
}
]
}
Loading

0 comments on commit 5e60691

Please sign in to comment.