-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
49 lines (41 loc) · 908 Bytes
/
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
[package]
edition = "2018"
name = "nds"
version = "0.2.0"
authors = ["Maid Dog <maiddogsrl@gmail.com>"]
description = "Library for handling Nintendo DS ROM files."
documentation = "https://docs.rs/nds"
repository = "https://github.com/Roughsketch/nds"
readme = "README.md"
keywords = ["utility", "nds", "rom", "extract", "build"]
categories = ["filesystem"]
license = "MIT"
exclude = ["tests/*", "benches/*"]
[workspace]
members = [
"narc",
"nitro_fs",
]
[dependencies]
byteorder = "1.3"
lazy_static = "1.2"
memmap = "0.7"
rayon = "1.0"
# Error handling
thiserror = "1.0.26"
anyhow = "1.0"
num = {version = "0.2", default-features = false}
nitro_fs = {path = "nitro_fs", version = "0.2.0" }
[dev-dependencies]
criterion = "0.2"
md5 = "0.6"
[[bench]]
name = "extract"
harness = false
path = "benches"
[profile.release]
lto = true
codegen-units = 1
[profile.bench]
lto = true
codegen-units = 1