Skip to content

Commit 1c034aa

Browse files
authored
base64ct v1.0.0 (#335)
1 parent 6753dd1 commit 1c034aa

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

Cargo.lock

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

base64ct/CHANGELOG.md

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

7+
## 1.0.0 (2021-03-17)
8+
### Changed
9+
- Bump MSRV to 1.47+ ([#334])
10+
11+
### Fixed
12+
- MSRV-dependent TODOs in implementation ([#334])
13+
14+
[#334]: https://github.com/RustCrypto/utils/pull/334
15+
716
## 0.2.1 (2021-03-07)
817
### Fixed
918
- MSRV docs ([#328])

base64ct/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "base64ct"
3-
version = "0.2.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "1.0.0" # Also update html_root_url in lib.rs when bumping this
44
description = """
5-
Pure Rust implementation Base64 (RFC 4648) implemented without data-dependent
6-
branches/LUTs thereby providing portable "best effort" constant-time operation
7-
and embedded-friendly no_std support
5+
Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of
6+
data-dependent branches/LUTs and thereby provides portable "best effort"
7+
constant-time operation and embedded-friendly no_std support
88
"""
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"

base64ct/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
#![doc(
7777
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
7878
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
79-
html_root_url = "https://docs.rs/base64ct/0.2.1"
79+
html_root_url = "https://docs.rs/base64ct/1.0.0"
8080
)]
8181
#![warn(missing_docs, rust_2018_idioms)]
8282

pkcs8/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ readme = "README.md"
1717
der = { version = "0.2", features = ["oid"], path = "../der" }
1818
spki = { version = "0.2", path = "../spki" }
1919

20-
base64ct = { version = "0.2", optional = true, features = ["alloc"], path = "../base64ct" }
20+
base64ct = { version = "1", optional = true, path = "../base64ct" }
2121
rand_core = { version = "0.6", optional = true, default-features = false }
2222
pkcs5 = { version = "0.1.1", optional = true, path = "../pkcs5" }
2323
zeroize = { version = "1", optional = true, default-features = false, features = ["alloc"] }
@@ -29,7 +29,7 @@ hex-literal = "0.3"
2929
encryption = ["alloc", "pkcs5/alloc", "pkcs5/pbes2", "rand_core"]
3030
std = ["alloc", "der/std"]
3131
alloc = ["der/alloc", "zeroize"]
32-
pem = ["alloc", "base64ct"]
32+
pem = ["alloc", "base64ct/alloc"]
3333

3434
[package.metadata.docs.rs]
3535
all-features = true

0 commit comments

Comments
 (0)