41 lines
770 B
TOML
41 lines
770 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-game"
|
|
path = "src/game.rs"
|
|
|
|
[[bin]]
|
|
name = "ayin"
|
|
path = "src/ayin.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 }
|