Bump the package version to 1.2.0 for the high-score demo database seeding, service hardening, web retry bounds, and multiball parity and divergence fixes. Update CHANGELOG.md and refresh the tracked web WASM artifact. Test Plan: - `just test` -- passed (142 game tests and 8 service tests) - `just clippy` -- passed - `just build-production` -- passed - `just web-build` -- passed - `cargo +nightly fmt --all -- --check` -- passed - `rumdl check --flavor commonmark tdkpin-rs/CHANGELOG.md` -- passed - `cargo metadata --locked --format-version 1 --no-deps` -- passed - `git diff --cached --check` -- passed
44 lines
838 B
TOML
44 lines
838 B
TOML
[package]
|
|
name = "tdkpin-rs"
|
|
version = "1.2.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
macroquad = { version = "0.4", features = ["audio"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
directories = "6"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
futures-util = "0.3"
|
|
tdkpin-web-storage = { path = "web_storage" }
|
|
|
|
[lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
todo = "warn"
|
|
unwrap_used = "warn"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
strip = false
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
lto = false
|
|
panic = "unwind"
|
|
incremental = true
|
|
|
|
[profile.production]
|
|
inherits = "release"
|
|
debug = false
|
|
strip = true
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
lto = true
|
|
incremental = false
|
|
codegen-units = 1
|