-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (28 loc) · 831 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
[workspace]
resolver = "2"
members = [
"cuniq",
"line_cardinality",
]
[workspace.package]
authors = ["Michael Ripley <zkxs00@gmail.com>"]
edition = "2021"
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/zkxs/cuniq"
keywords = ["count", "unique", "cardinality"]
# These profiles are duplicated from the cuniq binary, as they're used by local tools but NOT remote cargo install.
# tracking issue: https://github.com/rust-lang/cargo/issues/8264
[profile.release]
lto = "fat"
codegen-units = 1
strip = true
[profile.release-optimized-debug]
inherits = "release"
strip = false # required for `cargo-bloat`
debug = true # required for `cargo flamegraph`, and makes `cargo-bloat` output significantly better
[workspace.dependencies]
cfg-if = "1"
criterion = "0.5"
memmap2 = "0.9"
bstr = "1"