forked from HdrHistogram/HdrHistogram_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (41 loc) · 1.22 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
54
[package]
name = "hdrhistogram"
version = "6.0.4"
description = "A port of HdrHistogram to Rust"
readme = "README.md"
authors = [
"Jon Gjengset <jon@thesquareplanet.com>",
"Marshall Pierce <marshall@mpierce.org>",
]
documentation = "https://docs.rs/hdrhistogram"
homepage = "https://github.com/HdrHistogram/HdrHistogram_rust"
repository = "https://github.com/HdrHistogram/HdrHistogram_rust.git"
keywords = ["sampling", "statistics", "analytics"]
categories = ["data-structures", "development-tools::profiling"]
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "HdrHistogram/HdrHistogram_rust" }
[features]
bench_private = [] # for enabling nightly-only feature(test) on the main crate to allow benchmarking private code
serialization = [ "flate2", "nom", "base64" ]
default = [ "serialization" ]
[dependencies]
num-traits = "0.1"
byteorder = "1.0.0"
flate2 = { version = "0.2.17", optional = true }
nom = { version = "^3.2.0", optional = true }
base64 = { version = "0.7.0", optional = true }
[dev-dependencies]
rand = "0.3.15"
rug = "0.9.1"
ieee754 = "0.2.2"
clap = "2.26.2"
[lib]
path = "src/lib.rs"
[profile.release]
debug=true
[profile.bench]
debug=true
[[example]]
name = "cli"
required-features = ["serialization"]