58 releases (24 stable)

new 1.8.1 Feb 22, 2025
1.7.1 Jan 24, 2025
1.6.2 Nov 22, 2024
1.6.0-alpha.2 Jul 19, 2024
0.3.0 Nov 7, 2023

#8 in #turbo

Download history 55/week @ 2024-10-29 375/week @ 2024-11-05 120/week @ 2024-11-12 725/week @ 2024-11-19 64/week @ 2024-11-26 77/week @ 2024-12-03 123/week @ 2024-12-10 12/week @ 2024-12-17 143/week @ 2025-01-07 20/week @ 2025-01-14 218/week @ 2025-01-21 18/week @ 2025-01-28 52/week @ 2025-02-04 58/week @ 2025-02-11

351 downloads per month
Used in mrdirector

MIT license

180KB
4.5K 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

~3–13MB
~156K SLoC