56 releases (22 stable)

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

#8 in #turbo

Download history 423/week @ 2024-11-04 125/week @ 2024-11-11 693/week @ 2024-11-18 90/week @ 2024-11-25 74/week @ 2024-12-02 131/week @ 2024-12-09 15/week @ 2024-12-16 137/week @ 2025-01-06 21/week @ 2025-01-13 208/week @ 2025-01-20 33/week @ 2025-01-27 46/week @ 2025-02-03 21/week @ 2025-02-10

309 downloads per month
Used in mrdirector

MIT license

140KB
3.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

~4–14MB
~176K SLoC