-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 940 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
50
[package]
authors = ["carlos alejandro gutierrez sandoval <[email protected]>"]
edition = "2018"
name = "mass_bench"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "*"
flate2 = "*"
itertools = "*"
super_mass = {path = "../super_mass", features = ["jemalloc", "pseudo_distance"], default-features = false}
tar = "*"
[dev-dependencies]
criterion = "*"
[[bench]]
harness = false
name = "mass"
[profile.test]
debug = false
debug-assertions = false
incremental = false
lto = "thin"
opt-level = 3
overflow-checks = false
rpath = false
[profile.bench]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = false
opt-level = 3
overflow-checks = false
rpath = false
[profile.release]
codegen-units = 1
debug = true
debug-assertions = false
incremental = false
lto = "fat"
opt-level = 3
overflow-checks = false
rpath = false