Skip to content

Commit 1d57f10

Browse files
committed
v0.1.2
1 parent 62efcee commit 1d57f10

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streaming_algorithms"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
license = "MIT OR Apache-2.0"
55
authors = ["Alec Mocatta <alec@mocatta.net>"]
66
categories = ["data-structures","algorithms","science"]
@@ -10,12 +10,12 @@ SIMD-accelerated implementations of various streaming algorithms, including Coun
1010
"""
1111
repository = "https://github.com/alecmocatta/streaming_algorithms"
1212
homepage = "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"
1414
readme = "README.md"
1515
edition = "2018"
1616

1717
[badges]
18-
azure-devops = { project = "alecmocatta/streaming_algorithms", pipeline = "tests" }
18+
azure-devops = { project = "alecmocatta/streaming_algorithms", pipeline = "tests", build = "16" }
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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

99
SIMD-accelerated implementations of various [streaming algorithms](https://en.wikipedia.org/wiki/Streaming_algorithm).
1010

src/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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">📦&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>
5+
//! </strong></p>
46
//!
57
//! This library is a work in progress. PRs are very welcome! Currently implemented algorithms include:
68
//!
@@ -21,7 +23,7 @@
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,

0 commit comments

Comments
 (0)