From 6e6761acc391280d5c57fe542a210d618d86bed6 Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Sat, 24 Oct 2020 11:20:31 -0400 Subject: [PATCH] tweaks --- metrics-util/CHANGELOG.md | 2 ++ metrics-util/Cargo.toml | 9 --------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/metrics-util/CHANGELOG.md b/metrics-util/CHANGELOG.md index 2e4aa72..8a292fa 100644 --- a/metrics-util/CHANGELOG.md +++ b/metrics-util/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Removed +- Removed `StreamingIntegers` as we no longer use it, and `compressed_vec` is a better option. ## [0.3.1] - 2019-11-21 ### Changed diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index 3ef48a7..15f774d 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -26,10 +26,6 @@ harness = false name = "registry" harness = false -[[bench]] -name = "streaming_integers" -harness = false - [dependencies] metrics = { version = "0.13.0-alpha.1", path = "../metrics", features = ["std"] } crossbeam-epoch = { version = "0.9", optional = true } @@ -50,8 +46,3 @@ rand_distr = "0.3" default = ["std"] std = ["arc-swap", "atomic-shim", "crossbeam-epoch", "dashmap", "indexmap"] layer-filter = ["aho-corasick"] - -[[test]] -name = "streaming" -path = "tests/streaming/fuzz_target.rs" -harness = false