43 releases (16 stable)
new 1.6.0-alpha.10 | Nov 4, 2024 |
---|---|
1.6.0-alpha.6 | Sep 5, 2024 |
1.6.0-alpha.2 | Jul 19, 2024 |
1.1.1 | Feb 25, 2024 |
0.3.0 | Nov 7, 2023 |
#5 in #turbo
494 downloads per month
120KB
3K
SLoC
Turbo Genesis SDK
See more documentation at https://docs.rs/turbo-genesis-sdk/latest/turbo_genesis_sdk/
Getting Started
Create a project
First, create a project:
cargo init --lib your-project-name
Add the dependency
Add the sdk as a dependency in Cargo.toml
:
[dependencies]
turbo = { package = "turbo-genesis-sdk" }
Update your code
Open src/lib.rs
and add the following:
turbo::go! {
text!("Hello, world!!!");
}
Build
Build with the following command:
cargo build --target wasm32-unknown-unknown
Run your game with Turbo
turbo run -w .
Dependencies
~4–15MB
~177K SLoC