-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (36 loc) · 923 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
[package]
name = "dsrs"
version = "0.6.1"
authors = ["Vladimir Feinberg <[email protected]>"]
edition = "2018"
description = "Rusty wrapper for Apache DataSketches"
homepage = "https://github.com/vlad17/datasketches-rs"
repository = "https://github.com/vlad17/datasketches-rs"
readme = "README.md"
keywords = ["sketch", "probabilistic"]
categories = ["command-line-utilities", "algorithms", "compression"]
license = "Apache-2.0"
[dependencies]
cxx = "1.0"
structopt = "0.3"
bstr = "0.2"
memchr = "2.3"
base64 = "0.13"
thin-dst = "1.1"
[build-dependencies]
cxx-build = "1.0"
[dev-dependencies]
itertools = "0.10"
proptest = "1.0"
amadeus-streaming = "0.4"
byte-slice-cast = "1.0"
criterion = "0.3"
hyperloglogplus = { version = "0.4", features = ["const-loop"] }
ordered-float = "2.5"
probabilistic-collections = "0.7"
probably = "0.3"
assert_cmd = "1.0"
rand = "0.8.4"
[[bench]]
name = "speed"
harness = false