ayin/Cargo.toml
2025-12-24 23:43:34 +02:00

37 lines
721 B
TOML

[package]
name = "ayin-lang"
version = "0.1.0"
edition = "2024"
authors = ["alloca <me@alloca.space>"]
description = "Programming language for live-coding games"
license = "Apache-2.0"
readme = "readme.md"
default-run = "ayin"
[lib]
name = "ayin"
path = "src/lib.rs"
[[bin]]
name = "ayin"
path = "src/main.rs"
[[bench]]
name = "benchmark"
harness = false
[dependencies]
macroquad = "0.4.14"
lyn = "0.1.0"
gamepads = { version = "*", default-features = false }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
hotwatch = "0.5.0"
[dev-dependencies]
insta = "1.44.3"
criterion = { version = "0.7" }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }