alpha
Login
or
Join now
urschrei.eurosky.social
/
cvmcount
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Rust implementation of the CVM algorithm for counting distinct elements in a stream
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Remove msrv check
author
Stephan Hügel
date
11 months ago
(Jul 26, 2025, 11:18 PM +0200)
commit
f23d0701
f23d07017412fde666d45bbf528f1eb53c070ae7
parent
db21dde2
db21dde28bdb56146be13235b402f922caf64cc1
change-id
zxnrptpp
zxnrptppotoskwpxmytvysvqmxyvkkxq
-14
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
ci.yml
-14
.github/workflows/ci.yml
Reviewed
···
47
47
48
48
- name: Run doc tests
49
49
run: cargo test --doc
50
50
-
51
51
-
minimum-rust-version:
52
52
-
name: Check MSRV
53
53
-
runs-on: ubuntu-latest
54
54
-
steps:
55
55
-
- uses: actions/checkout@v4
56
56
-
57
57
-
- name: Install minimum Rust version
58
58
-
uses: dtolnay/rust-toolchain@stable
59
59
-
with:
60
60
-
toolchain: "1.85" # Based on your Cargo.toml
61
61
-
62
62
-
- name: Check compilation
63
63
-
run: cargo check --all-features