Skip to content

Commit 338c078

Browse files
authored
chacha20 v0.8.1 (#275)
1 parent 0d9eb9d commit 338c078

File tree

5 files changed

+123
-20
lines changed

5 files changed

+123
-20
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chacha20/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.8.1 (2021-08-30)
9+
### Added
10+
- NEON implementation for aarch64 ([#274])
11+
12+
[#274]: https://github.com/RustCrypto/stream-ciphers/pull/274
13+
814
## 0.8.0 (2021-08-29)
915
### Added
1016
- SSE2 autodetection support ([#270])

chacha20/Cargo.lock

+111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chacha20/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chacha20"
3-
version = "0.8.0" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.8.1" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """

chacha20/src/lib.rs

+4-18
Original file line numberDiff line numberDiff line change
@@ -74,28 +74,14 @@
7474
#![doc(
7575
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
7676
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
77-
html_root_url = "https://docs.rs/chacha20/0.8.0"
77+
html_root_url = "https://docs.rs/chacha20/0.8.1"
7878
)]
7979
#![cfg_attr(docsrs, feature(doc_cfg))]
80-
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]
81-
#![cfg_attr(
82-
all(
83-
feature = "neon",
84-
target_arch = "aarch64",
85-
target_feature = "neon",
86-
not(feature = "force-soft")
87-
),
88-
feature(stdsimd)
89-
)]
9080
#![cfg_attr(
91-
all(
92-
feature = "neon",
93-
target_arch = "aarch64",
94-
target_feature = "neon",
95-
not(feature = "force-soft")
96-
),
97-
feature(aarch64_target_feature)
81+
all(feature = "neon", target_arch = "aarch64", target_feature = "neon"),
82+
feature(stdsimd, aarch64_target_feature)
9883
)]
84+
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]
9985

10086
mod backend;
10187
#[cfg(feature = "cipher")]

0 commit comments

Comments
 (0)