diff --git a/Cargo.toml b/Cargo.toml index 31865c78..599608e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "streaming_algorithms" -version = "0.1.1" +version = "0.1.2" license = "MIT OR Apache-2.0" authors = ["Alec Mocatta "] categories = ["data-structures","algorithms","science"] @@ -10,12 +10,12 @@ SIMD-accelerated implementations of various streaming algorithms, including Coun """ repository = "https://github.com/alecmocatta/streaming_algorithms" homepage = "https://github.com/alecmocatta/streaming_algorithms" -documentation = "https://docs.rs/streaming_algorithms/0.1.1" +documentation = "https://docs.rs/streaming_algorithms/0.1.2" readme = "README.md" edition = "2018" [badges] -azure-devops = { project = "alecmocatta/streaming_algorithms", pipeline = "tests" } +azure-devops = { project = "alecmocatta/streaming_algorithms", pipeline = "tests", build = "16" } maintenance = { status = "actively-developed" } [dependencies] diff --git a/README.md b/README.md index 23afaa57..7a578b79 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ [![Crates.io](https://img.shields.io/crates/v/streaming_algorithms.svg?maxAge=86400)](https://crates.io/crates/streaming_algorithms) [![MIT / Apache 2.0 licensed](https://img.shields.io/crates/l/streaming_algorithms.svg?maxAge=2592000)](#License) -[![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) +[![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) -[Docs](https://docs.rs/streaming_algorithms/0.1.1) +[📖 Docs](https://docs.rs/streaming_algorithms/0.1.2) | [💬 Chat](https://constellation.zulipchat.com/#narrow/stream/213236-subprojects) SIMD-accelerated implementations of various [streaming algorithms](https://en.wikipedia.org/wiki/Streaming_algorithm). diff --git a/src/lib.rs b/src/lib.rs index 3bfd59a9..bdc349ec 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,8 @@ //! SIMD-accelerated implementations of various [streaming algorithms](https://en.wikipedia.org/wiki/Streaming_algorithm). //! -//! **[Crates.io](https://crates.io/crates/streaming_algorithms) │ [Repo](https://github.com/alecmocatta/streaming_algorithms)** +//!

+//! 📦  Crates.io  â”‚  ðŸ“‘  GitHub  â”‚  ðŸ’¬  Chat +//!

//! //! This library is a work in progress. PRs are very welcome! Currently implemented algorithms include: //! @@ -21,7 +23,7 @@ //! //! 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. -#![doc(html_root_url = "https://docs.rs/streaming_algorithms/0.1.1")] +#![doc(html_root_url = "https://docs.rs/streaming_algorithms/0.1.2")] #![feature(specialization)] #![warn( missing_copy_implementations,