-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (33 loc) · 1.02 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
[package]
name = "refpack"
version = "4.0.2"
edition = "2021"
rust-version = "1.66"
description = "A crate providing compression/decompression for the RefPack compression format, utilized by many early 2000s EA games"
repository = "https://github.com/actioninja/refpack-rs"
readme = "README.md"
authors = ["actioninja"]
license = "MPL-2.0"
categories = ["compression", "game-development"]
keywords = ["refpack", "dbpf", "far", "ea", "qfs"]
include = ["src/**", "benches/**/*.rs", "tests/**", "Cargo.toml", "README.md", "LICENSE.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byteorder = "1.5"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
paste = "1.0"
proptest = "1.0"
rand = "0.8"
test-strategy = "0.4"
refpack-sys = { git = "https://github.com/actioninja/refpack-sys.git" }
ureq = "2.6"
zip = "2.2"
[[bench]]
name = "synthetic_performance"
harness = false
[[bench]]
name = "control"
harness = false
[profile.release]
debug = true