-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (42 loc) · 1008 Bytes
/
Cargo.toml
File metadata and controls
51 lines (42 loc) · 1008 Bytes
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
[package]
name = "cvmcount"
description = "use the CVM algorithm to quickly estimate the number of distinct elements in a stream"
readme = "README.md"
license = "BlueOak-1.0.0"
repository = "https://github.com/urschrei/cvmcount"
documentation = "https://docs.rs/cvmcount"
keywords = ["CVM", "count-distinct", "estimation", "treap"]
categories = ["algorithms", ]
rust-version = "1.85"
version = "1.0.1"
edition = "2024"
[dependencies]
rand = { version = "0.9.1", features = ["std_rng"] }
regex = "1.10.4"
clap = { version = "4.5.4", features = ["cargo"] }
rustc-hash = "2.1.1"
[dev-dependencies]
criterion = "0.8.0"
[lib]
name = "cvmcount"
path = "src/lib.rs"
doctest = false
bench = false
[[bin]]
name = "cvmcount"
path = "src/main.rs"
test = false
bench = false
[profile.release]
lto = true
codegen-units = 1
[profile.bench]
lto = true
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[[bench]]
name = "benchmarks"
harness = false