-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (40 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
52 lines (40 loc) · 1.05 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
[package]
name = "gorgonites"
version = "0.1.0"
edition = "2021"
authors = ["Gumbees"]
description = "An AI-driven alternate history strategy game"
repository = "https://github.com/Gumbees/gorgonites"
license = "MIT"
keywords = ["game", "strategy", "rts", "ai", "narrative"]
categories = ["games"]
[dependencies]
# Game Framework
macroquad = "0.4"
# Async runtime for AI calls
tokio = { version = "1", features = ["full"] }
# Serialization (save games, config, AI prompts)
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# HTTP client for AI API calls
reqwest = { version = "0.12", features = ["json"] }
# Random generation (maps, events, combat rolls)
rand = "0.8"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
thiserror = "1"
anyhow = "1"
# UUID for entity IDs
uuid = { version = "1", features = ["v4", "serde"] }
[dev-dependencies]
tokio-test = "0.4"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1