-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (41 loc) · 1.11 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
[package]
name = "faf-dns-bench"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 1
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
panic = 'abort'
codegen-units = 1
lto = "thin"
debug = false
incremental = false
overflow-checks = false
strip = 'symbols'
[profile.release.package."*"]
opt-level = 3
codegen-units = 1
[dependencies]
# FFI bindings to better allocator designed by Microsoft
mimalloc = { version = "*", default-features = false }
clap = { version = "*", default-features = true, features = ["derive"] }
regex = "*"
lazy_static = "*"
once_cell = "*"
hashbrown = { version = "*", default-features = true, features = ["inline-more", "ahash"] }
statrs = { version = "*", default-features = false }
mio = { version = "*", features = ["net","os-poll"]}
serde = { version = "*", default-features = false, features = ["derive"] }
serde_json = "*"