-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 852 Bytes
/
Cargo.toml
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
[package]
name = "game_extension"
version = "0.0.1"
edition = "2024"
resolver = "3"
rust-version = "1.85"
[lib]
crate-type = ["cdylib"]
[dependencies]
godot = { version = "=0.2.3", features = ["serde", "api-4-3", "register-docs"] }
# Pathfinding
priority-queue = { version = "2.1" }
# Savegame/Database
chrono = { version = "0.4", features = ["clock"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
serde_with = { version = "3.12", features = ["std"] }
bitcode = { version = "0.6", features = ["serde"], optional = true }
# Macros
game_extension_macros = { path = "game_extension_macros" }
[features]
default = ["verify_database", "serde_json"]
verify_database = []
save_json = ["serde_json"]
save_bin = ["bitcode"]
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"