-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (71 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "data_reader"
version = "0.5.0"
authors = ["rcarson3 <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
edition = "2018"
publish = false
repository = "https://github.com/rcarson3/rust_data_reader/"
description = "A data loading library for data scientist."
keywords = ["data-reader"]
categories = ["data-structures", "science"]
exclude = [
"*.txt",
"/tests/*",
"/benches/*",
]
[dependencies]
bytecount = "0.6.3"
anyhow = "1.0"
memchr = "2.5.0"
lexical = "6.1.1"
memmap = { package = "memmap2", version = "0.5.5", optional = true }
[features]
mmap = ["memmap"]
[dev-dependencies]
criterion = "0.3.6"
[[bench]]
name = "examples"
path = "benches/examples.rs"
harness = false
[profile.release]
opt-level = 3
debug = false
# rpath = false
# lto = 'fat'
# debug-assertions = false
codegen-units = 1
# panic = 'unwind'
# incremental = false
# overflow-checks = false
# [profile.dev]
# opt-level = 3
# debug = false
# rpath = false
# lto = false
# debug-assertions = true
# codegen-units = 16
# panic = 'unwind'
# incremental = false
# overflow-checks = false
[profile.bench]
opt-level = 3
debug = false
# # rpath = false
lto = 'fat'
#debug-assertions = false
codegen-units = 1
# panic = 'abort'
incremental = false
#overflow-checks = false
# [profile.test]
# opt-level = 3
# debug = false
# rpath = false
# lto = false
# debug-assertions = true
# codegen-units = 16
# panic = 'unwind'
# incremental = false
# overflow-checks = false