-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 835 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 835 Bytes
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
[package]
name = "wot-space-parser"
version = "0.1.0"
edition = "2021"
license = "WTFPL"
description = "Parse World of Tanks (BigWorld engine) map files and extract rendering and collision geometry."
repository = "https://github.com/yourname/wot-space-parser"
keywords = ["worldoftanks", "bigworld", "geometry", "havok", "gamedev"]
categories = ["parser-implementations", "game-development"]
readme = "README.md"
[lib]
name = "wot_space_parser"
path = "src/lib.rs"
[[bin]]
name = "wot-extract"
path = "src/bin/wot-extract.rs"
[dependencies]
zip = "2"
image = { version = "0.25", default-features = false, features = ["png"] }
flate2 = "1"
anyhow = "1"
log = "0.4"
# CLI + viewer
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tiny_http = "0.12"
env_logger = "0.11"