Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 43 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions base16ct/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.0 (2026-01-03)
### Fixed
- Switch from `doc_auto_cfg` to `doc_cfg` ([#2072])

[#2072]: https://github.com/RustCrypto/formats/pull/2072

## 0.3.0 (2025-08-20)
### Changed
- Upgrade to 2024 edition; MSRV 1.85 ([#1670])
Expand Down
2 changes: 1 addition & 1 deletion base16ct/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "base16ct"
version = "0.3.0"
version = "1.0.0"
description = """
Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids
any usages of data-dependent branches/LUTs and thereby provides portable
Expand Down
2 changes: 1 addition & 1 deletion sec1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2024"
rust-version = "1.85"

[dependencies]
base16ct = { version = "0.3", optional = true, default-features = false }
base16ct = { version = "1", optional = true, default-features = false }
der = { version = "0.8.0-rc.10", optional = true, features = ["oid"] }
hybrid-array = { version = "0.4", optional = true, default-features = false }
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
Expand Down
4 changes: 2 additions & 2 deletions serdect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ edition = "2024"
rust-version = "1.85"

[dependencies]
base16ct = { version = "0.3", default-features = false }
base16ct = { version = "1", default-features = false }
serde = { version = "1.0.184", default-features = false }

# optional features
Expand All @@ -31,7 +31,7 @@ rmp-serde = "1"
serde = { version = "1.0.184", default-features = false, features = ["derive"] }
serde_json = "1"
serde-json-core = { version = "0.6", default-features = false, features = ["std"] }
toml = "0.8"
toml = "0.9"

[features]
default = ["alloc"]
Expand Down