-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (46 loc) · 1.19 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
49
50
51
[package]
name = "vpin"
version = "0.16.1"
edition = "2021"
description = "Rust library for the virtual pinball ecosystem"
repository = "https://github.com/francisdb/vpin"
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/vpin"
keywords = ["vpin", "visual-pinball", "virtual-pinball", "vpx"]
categories = ["game-engines", "game-development"]
exclude = [
"testdata/*",
]
[dependencies]
byteorder = "1.5.0"
bytes = "1.8.0"
cfb = "0.10.0"
encoding_rs = "0.8.35"
fake = { version = "3.0.1", features = ["derive"] }
md2 = "0.10.2"
nom = "7.1.3"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = { version = "1.0.132", features = ["preserve_order"] }
utf16string = "0.2.0"
quick-xml = { version = "0.37.0", features = ["serialize"] }
serde_repr = "0.1.19"
hex = "0.4.3"
wavefront_rs = "2.0.0-beta.1"
flate2 = "1.0.34"
image = "0.25.5"
weezl = "0.1.8"
regex = "1.11.1"
[dev-dependencies]
dirs = "5.0.1"
pretty_assertions = "1.4.1"
rand = "0.8.5"
rayon = "1.10.0"
testdir = "0.9.1"
walkdir = "2.5.0"
roxmltree = "0.20.0"
testresult = "0.4.1"
[profile.test]
# level 0 is very slow for writing to compound files
# see https://github.com/mdsteele/rust-cfb/issues/42
opt-level = 1