[package]
edition = "2024"
rust-version = "1.88"
name = "shadertoy-cli"
version = "2.2.7"
authors = ["Hendrik Lind <hendrik@sshcrack.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-friendly ShaderToy project, rendering, debugging, and live-preview CLI"
homepage = "https://github.com/sshcrack/shadertoy"
documentation = "https://docs.rs/shadertoy-cli"
readme = "README.md"
keywords = [
"shadertoy",
"shader",
"cli",
"opengl",
"graphics",
]
categories = [
"command-line-utilities",
"graphics",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/sshcrack/shadertoy"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }-v{ version }{ archive-suffix }"
bin-dir = "shadertoy{ binary-ext }"
pkg-fmt = "tgz"
disabled-strategies = [
"quick-install",
"compile",
]
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[[bin]]
name = "shadertoy"
path = "src/main.rs"
doc = false
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "compute_pipeline"
path = "tests/compute_pipeline.rs"
[[test]]
name = "fixed_resolution"
path = "tests/fixed_resolution.rs"
[[test]]
name = "multiple_outputs"
path = "tests/multiple_outputs.rs"
[[test]]
name = "sampler_controls"
path = "tests/sampler_controls.rs"
[[test]]
name = "storage_buffers"
path = "tests/storage_buffers.rs"
[[test]]
name = "uniform_workflows"
path = "tests/uniform_workflows.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.futures-util]
version = "0.3"
[dependencies.image]
version = "0.25"
features = [
"png",
"jpeg",
]
default-features = false
[dependencies.notify]
version = "8.2"
[dependencies.open]
version = "5.3"
[dependencies.schemars]
version = "1.0"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.shadertoy]
version = "2.2.7"
package = "shadertoy-native"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1.47"
features = [
"macros",
"rt-multi-thread",
"net",
"sync",
"time",
"signal",
]
[dependencies.toml]
version = "0.9"