File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " streaming_algorithms"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44license = " MIT OR Apache-2.0"
55authors = [" Alec Mocatta <alec@mocatta.net>" ]
66categories = [" data-structures" ," algorithms" ," science" ]
@@ -10,12 +10,12 @@ SIMD-accelerated implementations of various streaming algorithms, including Coun
1010"""
1111repository = " https://github.com/alecmocatta/streaming_algorithms"
1212homepage = " https://github.com/alecmocatta/streaming_algorithms"
13- documentation = " https://docs.rs/streaming_algorithms/0.1.1 "
13+ documentation = " https://docs.rs/streaming_algorithms/0.1.2 "
1414readme = " README.md"
1515edition = " 2018"
1616
1717[badges ]
18- azure-devops = { project = " alecmocatta/streaming_algorithms" , pipeline = " tests" }
18+ azure-devops = { project = " alecmocatta/streaming_algorithms" , pipeline = " tests" , build = " 16 " }
1919maintenance = { status = " actively-developed" }
2020
2121[dependencies ]
Original file line number Diff line number Diff line change 22
33[ ![ Crates.io] ( https://img.shields.io/crates/v/streaming_algorithms.svg?maxAge=86400 )] ( https://crates.io/crates/streaming_algorithms )
44[ ![ MIT / Apache 2.0 licensed] ( https://img.shields.io/crates/l/streaming_algorithms.svg?maxAge=2592000 )] ( #License )
5- [ ![ Build Status] ( https://dev.azure.com/alecmocatta/streaming_algorithms/_apis/build/status/tests?branchName=master )] ( https://dev.azure.com/alecmocatta/streaming_algorithms/_build/latest?branchName=master )
5+ [ ![ Build Status] ( https://dev.azure.com/alecmocatta/streaming_algorithms/_apis/build/status/tests?branchName=master )] ( https://dev.azure.com/alecmocatta/streaming_algorithms/_build?definitionId=16 )
66
7- [ Docs] ( https://docs.rs/streaming_algorithms/0.1.1 )
7+ [ 📖 Docs] ( https://docs.rs/streaming_algorithms/0.1.2 ) | [ 💬 Chat ] ( https://constellation.zulipchat.com/#narrow/stream/213236-subprojects )
88
99SIMD-accelerated implementations of various [ streaming algorithms] ( https://en.wikipedia.org/wiki/Streaming_algorithm ) .
1010
Original file line number Diff line number Diff line change 11//! SIMD-accelerated implementations of various [streaming algorithms](https://en.wikipedia.org/wiki/Streaming_algorithm).
22//!
3- //! **[Crates.io](https://crates.io/crates/streaming_algorithms) │ [Repo](https://github.com/alecmocatta/streaming_algorithms)**
3+ //! <p style="font-family: 'Fira Sans',sans-serif;padding:0.3em 0"><strong>
4+ //! <a href="https://crates.io/crates/streaming_algorithms">📦 Crates.io</a> │ <a href="https://github.com/alecmocatta/streaming_algorithms">📑 GitHub</a> │ <a href="https://constellation.zulipchat.com/#narrow/stream/213236-subprojects">💬 Chat</a>
5+ //! </strong></p>
46//!
57//! This library is a work in progress. PRs are very welcome! Currently implemented algorithms include:
68//!
2123//!
2224//! As these implementations are often in hot code paths, unsafe is used, albeit only when necessary to a) achieve the asymptotically optimal algorithm or b) mitigate an observed bottleneck.
2325
24- #![ doc( html_root_url = "https://docs.rs/streaming_algorithms/0.1.1 " ) ]
26+ #![ doc( html_root_url = "https://docs.rs/streaming_algorithms/0.1.2 " ) ]
2527#![ feature( specialization) ]
2628#![ warn(
2729 missing_copy_implementations,
You can’t perform that action at this time.
0 commit comments