-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 2.12 KB
/
Cargo.toml
File metadata and controls
67 lines (59 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# ============================================================================
# PRESS YOUR LUCK - Authentic 1983-1986 CBS Game Show Recreation
# ============================================================================
# A faithful recreation of the classic game show hosted by Peter Tomarken,
# with Rod Roddy announcing and Whammy animations by Savage Steve Holland.
#
# Features:
# - Authentic 18-square Big Board with cycling prizes
# - 3-player format with question rounds and board rounds
# - 66+ unique Whammy animations with authentic character design
# - Authentic musical tones (D, E, G, B♭, D, A♭, F, C...)
# - Special squares: Add-A-One, Double Your Money, Pick a Corner
# - Proper passing rules and 4-Whammy elimination
# - Procedurally generated audio (no external files needed)
#
# Author: Claude (Anthropic) - Created for DoubleGate
# Date: January 2025
# License: MIT
# ============================================================================
[package]
name = "press-your-luck"
version = "2.1.0"
edition = "2021"
authors = ["DoubleGate <parobek@gmail.com>"]
description = "Authentic recreation of the 1983-1986 CBS game show Press Your Luck"
license = "MIT"
readme = "README.md"
keywords = ["game", "gameshow", "press-your-luck", "whammy", "trivia"]
categories = ["games"]
rust-version = "1.70"
[dependencies]
# ggez - Rust game library inspired by LOVE2D
# Features: 2D rendering (wgpu), audio (rodio), input handling
# Security: No known vulnerabilities (replaces macroquad 0.4 with RUSTSEC-2025-0035)
ggez = "0.9"
# Random number generation for board patterns and trivia
rand = "0.9"
fastrand = "2.0"
# Serialization for save/load functionality
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[profile.dev]
# Optimize dependencies in dev for faster runtime
opt-level = 1
[profile.dev.package."*"]
# Full optimization for dependencies
opt-level = 3
[profile.release]
# Maximum optimization for release builds
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = true
[profile.release-debug]
# Release with debug symbols for profiling
inherits = "release"
debug = true
strip = false