Rust implementation of the CVM algorithm for counting distinct elements in a stream
0

Configure Feed

Select the types of activity you want to include in your feed.

Remove msrv check

author
Stephan Hügel
date (Jul 26, 2025, 11:18 PM +0200) commit f23d0701 parent db21dde2 change-id zxnrptpp
-14
-14
.github/workflows/ci.yml
··· 47 47 48 48 - name: Run doc tests 49 49 run: cargo test --doc 50 - 51 - minimum-rust-version: 52 - name: Check MSRV 53 - runs-on: ubuntu-latest 54 - steps: 55 - - uses: actions/checkout@v4 56 - 57 - - name: Install minimum Rust version 58 - uses: dtolnay/rust-toolchain@stable 59 - with: 60 - toolchain: "1.85" # Based on your Cargo.toml 61 - 62 - - name: Check compilation 63 - run: cargo check --all-features