-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 788 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 788 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
32
33
[workspace]
resolver = "2"
members = ["crates/lib", "crates/cli", "crates/wasm"]
[workspace.package]
version = "0.3.0"
edition = "2021"
description = "A extractor and parser for Warcraft 3 map files"
documentation = "https://docs.rs/war3parser"
homepage = "https://github.com/wesleyel/war3parser"
repository = "https://github.com/wesleyel/war3parser"
keywords = ["warcraft3", "MPQ", "parser"]
categories = ["wasm", "command-line-utilities"]
license = "MIT"
exclude = ["/test_data/"]
readme = "README.md"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[workspace.dependencies]
image = "0.24.3"
image-blp = "1.2.0"
serde = "1.0.204"
serde_json = "1.0.135"
thiserror = "2.0.11"
wasm-bindgen = "0.2.100"
web-sys = "0.3.77"
tsify-next = "0.5.5"