Compilet

Server that compiles Rust, C, and C++ into WebAssembly.

Usage

Docker

Build

We have a docker image available on Docker Hub (jacoblincool/compilet), the latest tag supports to compile Rust, C, and C++ out of the box.

You can also use the rs tag (~500MB compressed) to compile Rust only, or the c tag (~150MB compressed) to compile C and C++ only.

Also, you can build your own image with the following command:

bash docker build -t compilet .

Run

You can run the image with the following command:

bash docker run -p 8000:8000 jacoblincool/compilet

Or use the docker compose file to run the image:

bash docker compose up

You may need a .env file to set the environment variables. Check the .env.example file for more information.

Both of the commands above will run the server on port 8000, so you can access the server at http://localhost:8000. You can also change the port by setting the PORT environment variable.

Cargo

You can also install the Compilet through Cargo:

bash cargo install compilet

It is more convenient to run is as a cli tool:

```bash compilet compile

compilet compile -h for more information

```

Endpoints

Validation

Compilet uses JWT to validate the request. You can set the APP_SECRET environment variable to set the secret key for the JWT token, default is APP_SECRET.

You should pass the JWT token in the Authorization header with the Bearer scheme.

Compile

Compilet should be able to queue the compile request in the future. But currently, it just compiles the source code directly.

POST body:

json { "lang": "rs", "code": "fn main() { println!(\"Hello, world!\"); }" }

Response:

json { "success": true, "message": "Compiled successfully", "hash": "bb343b0950832ccd077f1515e842196f2ae4bb9e9261b0935ac57916c3cf305d", "wasm": "<base64 encoded wasm binary>" }

POST body:

json { "lang": "rs", "code": "fn main() { println!(\"Hello, world!\"); }" }

Response:

json { "message": "Submitted", "hash": "bb343b0950832ccd077f1515e842196f2ae4bb9e9261b0935ac57916c3cf305d" }

Response:

json { "status": "pending", "message": "Waiting for compilation", "wasm": null }

json { "status": "success", "message": "Compiled successfully", "wasm": "<base64 encoded wasm binary>" }

json { "status": "failed", "message": "Compilation failed (error message)", "wasm": null }

System

Response:

json { "capabilities": { "rs": "rust 2021 edition + rand 0.8.5, release build", "c": "clang 16, level 3 optimizations", "cpp": "clang++ 16, level 3 optimizations" }, "status": { "compiling": 0, "pending": 0 } }

Development

After cloning the repository, you need to:

You can run the server in development mode with the following command:

bash cargo run

Build the server with the following command:

bash cargo build --release