Skip to content
Open
13 changes: 8 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "streaming_algorithms"
version = "0.3.0"
version = "0.3.3"
license = "MIT OR Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
authors = ["Alec Mocatta <alec@mocatta.net>", "Jianshu Zhao <jianshuzhao@yahoo.com>"]
categories = ["data-structures","algorithms","science"]
keywords = ["streaming-algorithm","probabilistic","sketch","data-structure","hyperloglog"]
description = """
Expand All @@ -12,17 +12,20 @@ repository = "https://github.com/alecmocatta/streaming_algorithms"
homepage = "https://github.com/alecmocatta/streaming_algorithms"
documentation = "https://docs.rs/streaming_algorithms"
readme = "README.md"
edition = "2018"
edition = "2021"

[badges]
azure-devops = { project = "alecmocatta/streaming_algorithms", pipeline = "tests", build = "16" }
maintenance = { status = "actively-developed" }

[features]
nightly = ["packed_simd"]
stdsimd = []
assert = []
serde = []

[dependencies]
twox-hash = "1.1"
xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3"] }
serde = { version = "1.0", features = ["derive"] }
rand = { version = "0.7", features = ["small_rng"] }
packed_simd = { version = "0.3", features = ["into_bits"], optional = true }
bincode = "1"
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resources:
repositories:
- repository: templates
type: github
name: alecmocatta/azure-pipeline-templates
name: jianshu93/azure-pipeline-templates
endpoint: alecmocatta

jobs:
Expand All @@ -20,7 +20,7 @@ jobs:
endpoint: alecmocatta
default:
rust_toolchain: stable nightly
rust_lint_toolchain: nightly-2020-07-12
rust_lint_toolchain: nightly-2025-10-09
rust_flags: ''
rust_features: ''
rust_target_check: 'aarch64-unknown-linux-gnu aarch64-unknown-linux-musl'
Expand All @@ -37,7 +37,7 @@ jobs:
mac1:
imageName: 'macos-latest'
rust_toolchain: nightly
rust_features: ';nightly'
rust_features: ';stdsimd'
rust_target_build: 'x86_64-unknown-linux-musl i686-unknown-linux-musl aarch64-apple-ios'
rust_target_run: 'x86_64-apple-darwin'
linux:
Expand Down
Loading
Loading