Skip to content

Commit

Permalink
Add Rust shuttle template
Browse files Browse the repository at this point in the history
Signed-off-by: slinkydeveloper <[email protected]>
  • Loading branch information
slinkydeveloper committed Aug 27, 2024
1 parent 1410017 commit faa4700
Show file tree
Hide file tree
Showing 10 changed files with 2,691 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
typescript-deno-hello-world.zip
go-hello-world.zip
rust-hello-world.zip
rust-shuttle-hello-world.zip
kotlin-hello-world-lambda-cdk.zip
go-tour-of-restate.zip
java-tour-of-restate.zip
Expand Down
1 change: 1 addition & 0 deletions .tools/prepare_release_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ create_release_zip templates/cloudflare-worker typescript-cloudflare-worker-hell
create_release_zip templates/deno typescript-deno-hello-world
create_release_zip templates/go go-hello-world
create_release_zip templates/rust rust-hello-world
create_release_zip templates/rust-shuttle rust-shuttle-hello-world
create_release_zip templates/typescript-lambda-cdk typescript-hello-world-lambda-cdk
create_release_zip templates/kotlin-gradle-lambda-cdk kotlin-hello-world-lambda-cdk
create_release_zip templates/python python-hello-world
Expand Down
1 change: 1 addition & 0 deletions .tools/run_rust_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ function cargo_build_check() {
}

cargo_build_check $PROJECT_ROOT/templates/rust
cargo_build_check $PROJECT_ROOT/templates/rust-shuttle
1 change: 1 addition & 0 deletions .tools/update_rust_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ function bump_rust_sdk() {
}

bump_rust_sdk $PROJECT_ROOT/templates/rust
bump_rust_sdk $PROJECT_ROOT/templates/rust-shuttle
11 changes: 11 additions & 0 deletions templates/rust-shuttle/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 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

Loading

0 comments on commit faa4700

Please sign in to comment.