-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
48 lines (41 loc) · 1.13 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "pd2tools-rust"
version = "0.1.0"
authors = ["Kythyria Tieran <[email protected]>"]
edition = "2021"
default-run = "pd2tools"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
debug = 1
[features]
default = []
[dependencies]
fnv = "1.0.7"
clap = "2.33.3"
xmlwriter = "0.1.0"
rayon = "1.5.0"
xmlparser = "0.13.3"
chrono = "0.4"
roxmltree = "0.14.0"
anyhow = "1.0.39"
structopt = "0.3.21"
nom = "6.1.2"
vek = { version = "0.15.10", features = [ "bytemuck" ] }
num-traits = "0.2.14"
git-version = "0.3.5"
thiserror = "1.0.30"
slotmap = "1.0.6"
bytemuck = { version = "1.13.1", features = ["extern_crate_alloc"] }
bytemuck_derive = "1.4.1"
pd2tools-macros = { path = './macros' }
steam = { path = "./steam" }
scriptdata = { path = "./scriptdata" }
gc = { version = "0.4.1", features = ["derive"] }
itertools = "0.10.5"
proc-macro2 = { version = "1.0.60", features = ["span-locations"] }
syn = "2.0.18"
[workspace]
members = [ "xmlparser", "blender/fdm_python", "macros", "bundlefs", "steam", "scriptdata" ]
[patch.crates-io]
xmlparser = { path = 'xmlparser' }