Skip to content

Commit 63c1d12

Browse files
committed
base16ct v1.0.0
1 parent 9946628 commit 63c1d12

File tree

5 files changed

+53
-11
lines changed

5 files changed

+53
-11
lines changed

Cargo.lock

Lines changed: 43 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

base16ct/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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 (2026-01-03)
8+
### Fixed
9+
- Switch from `doc_auto_cfg` to `doc_cfg` ([#2072])
10+
11+
[#2072]: https://github.com/RustCrypto/formats/pull/2072
12+
713
## 0.3.0 (2025-08-20)
814
### Changed
915
- Upgrade to 2024 edition; MSRV 1.85 ([#1670])

base16ct/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "base16ct"
3-
version = "0.3.0"
3+
version = "1.0.0"
44
description = """
55
Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids
66
any usages of data-dependent branches/LUTs and thereby provides portable

sec1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ edition = "2024"
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
base16ct = { version = "0.3", optional = true, default-features = false }
20+
base16ct = { version = "1", optional = true, default-features = false }
2121
der = { version = "0.8.0-rc.10", optional = true, features = ["oid"] }
2222
hybrid-array = { version = "0.4", optional = true, default-features = false }
2323
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }

serdect/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ edition = "2024"
1616
rust-version = "1.85"
1717

1818
[dependencies]
19-
base16ct = { version = "0.3", default-features = false }
19+
base16ct = { version = "1", default-features = false }
2020
serde = { version = "1.0.184", default-features = false }
2121

2222
# optional features
@@ -31,7 +31,7 @@ rmp-serde = "1"
3131
serde = { version = "1.0.184", default-features = false, features = ["derive"] }
3232
serde_json = "1"
3333
serde-json-core = { version = "0.6", default-features = false, features = ["std"] }
34-
toml = "0.8"
34+
toml = "0.9"
3535

3636
[features]
3737
default = ["alloc"]

0 commit comments

Comments
 (0)