Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alecmocatta committed Jun 9, 2020
1 parent c48e8d8 commit 4322bd6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 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 <alec@mocatta.net>"]
categories = ["data-structures","algorithms","science"]
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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).

Expand Down
6 changes: 4 additions & 2 deletions 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)**
//! <p style="font-family: 'Fira Sans',sans-serif;padding:0.3em 0"><strong>
//! <a href="https://crates.io/crates/streaming_algorithms">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/alecmocatta/streaming_algorithms">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213236-subprojects">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! This library is a work in progress. PRs are very welcome! Currently implemented algorithms include:
//!
Expand All @@ -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,
Expand Down

0 comments on commit 4322bd6

Please sign in to comment.