-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (36 loc) · 1019 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
[package]
name = "wt_datamine_extractor"
version = "0.4.0"
edition = "2021"
[lib]
name = "wt_datamine_extractor_lib"
path = "src/lib/lib.rs"
[[bin]]
name = "wt_datamine_extractor_bin"
path = "src/bin/main.rs"
[profile.release]
# This makes the compiled code faster and smaller, but it makes compiling slower,
# so it's only enabled in release mode.
opt-level = 3 # Opt 3 seems to have the best compile/run ratio
# Debug data is very useful even when running fast during work
debug = true
debug-assertions = true
overflow-checks = true
lto = false # Tested it, seems the best ratio
# Just good for compile times
incremental = true
codegen-units = 256
rpath = false
[dependencies]
serde = { version = "1.*", features = ["derive"] }
serde_json = "1.*"
lazy_static = "1.4.*"
strum = "^0.25"
strum_macros = "^0.25"
wt_csv = "^0.10.0"
fs_extra = "1.2.0"
const-gen = "^1.1.0"
get-size = { version = "^0.1", features = ["derive"] }
roman = "^0.1.6"
csv = "^1.2"
wt_blk = "0.0.5"