Rust implementation of the CVM algorithm for counting distinct elements in a stream
at main 643 B view raw
1[workspace] 2members = ["cargo:."] 3 4# Config for 'dist' 5[dist] 6# The preferred dist version to use in CI (Cargo.toml SemVer syntax) 7cargo-dist-version = "0.28.4" 8# CI backends to support 9ci = "github" 10# The installers to generate for each app 11installers = ["shell"] 12# Target platforms to build apps for (Rust target-triple syntax) 13targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] 14# Which actions to run on pull requests 15pr-run-mode = "plan" 16# Whether to install an updater program 17install-updater = false 18# Path that installers should place binaries in 19install-path = "CARGO_HOME"