From 0d2d8cd897e94bd94e0b3ae7c6ce9aa580a44a0a Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Wed, 26 Aug 2026 23:47:59 -0400 Subject: Add a_tension_span --- 2026/games_submissions/asrael_io/source/Cargo.toml | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 2026/games_submissions/asrael_io/source/Cargo.toml (limited to '2026/games_submissions/asrael_io/source/Cargo.toml') diff --git a/2026/games_submissions/asrael_io/source/Cargo.toml b/2026/games_submissions/asrael_io/source/Cargo.toml new file mode 100644 index 0000000..5853732 --- /dev/null +++ b/2026/games_submissions/asrael_io/source/Cargo.toml @@ -0,0 +1,38 @@ +[package] +name = "cj2k26" +version = "0.1.0" +license = "MIT" +repository = "https://github.com/asrael/cj2k26" +edition = "2024" + +[dependencies] +aseprite-io = "0.2" +cpal = "0.18" +embedded-graphics = "0.8" +env_logger = "0.11" +gilrs = "0.11" +glam = "0.33" +log = "0.4" +resid-rs = { git = "https://github.com/asrael/resid-rs" } +softbuffer = "0.4" +web-time = "1.1" +winit = "0.30" + +[target.'cfg(target_arch = "wasm32")'.dependencies] +console_error_panic_hook = "0.1" +cpal = { version = "0.18", features = ["wasm-bindgen"] } +wasm-bindgen = "0.2" + +[profile.dev] +opt-level = 1 +panic = "abort" + +[profile.release] +codegen-units = 1 +lto = true +panic = "abort" +strip = "debuginfo" + +[profile.wasm-release] +inherits = "release" +opt-level = "z" -- cgit v1.3.1