shadertoy-cli 2.1.6

Agent-friendly ShaderToy project, rendering, debugging, and live-preview CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod assets;
mod cli;
mod docs;
mod importer;
mod manifest;
mod ops;
mod preview;
mod project;
mod scaffold;
mod state;

use std::process::ExitCode;

fn main() -> ExitCode {
    cli::run()
}