-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (36 loc) · 912 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 = "bbc"
version = "0.1.0"
authors = ["univerz <univerz@fu-solution.com>"]
license = "MIT OR Apache-2.0"
publish = false
edition = "2018"
[dependencies]
anyhow = "1"
ahash = "0.6.3" # 0.7.0 looks slower (reworked specialization) # TODO(perf) test this old note + hashbrown & cargo up
argh = "0.1"
hashbrown = { version = "0.9.1"}#, default-features = false, features = ["ahash", "ahash-compile-time-rng", "serde"] }
indexmap = "1.9"
itertools = "0.10.0"
jemallocator = "0.3.2"
once_cell = "1.4.1"
parse-display = "0.5.5"
peg = "0.8.0"
pretty_assertions = "1.3"
rayon = "1.5"
[dev-dependencies]
criterion = "0.3"
[profile.release]
codegen-units = 1
lto = true
#lto = "fat" -- nie je to jednoznacne lepsie
debug = 1
[profile.dev]
opt-level = 2
debug = 1
[profile.dev.package."*"]
opt-level = 3
debug = 1
[features]
# default = ["ui_tui"] # enable this to debug changes in printing
ui_tui = []