Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

der v0.8.0-rc.0 #1458

Merged
merged 1 commit into from
Jul 26, 2024
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
3 changes: 2 additions & 1 deletion .github/workflows/der.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- ".github/workflows/der.yml"
- "const-oid/**"
- "der/**"
- "der_derive/**"
- "Cargo.*"
push:
branches: master
Expand Down Expand Up @@ -42,7 +43,7 @@ jobs:
if: false # TODO: temp disabled due to unpublished prerelease dependencies
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}
working-directory: ${{ github.workflow }}

test:
strategy:
Expand Down
57 changes: 41 additions & 16 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions der/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "der"
version = "0.8.0-pre.0"
version = "0.8.0-rc.0"
description = """
Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules
(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with
Expand All @@ -19,8 +19,8 @@ rust-version = "1.71"
[dependencies]
arbitrary = { version = "1.3", features = ["derive"], optional = true }
bytes = { version = "1", optional = true, default-features = false }
const-oid = { version = "=0.10.0-pre.2", optional = true }
der_derive = { version = "=0.8.0-pre.0", optional = true }
const-oid = { version = "0.10.0-rc.0", optional = true }
der_derive = { version = "0.8.0-rc.0", optional = true }
flagset = { version = "0.4.6", optional = true }
pem-rfc7468 = { version = "1.0.0-rc.0", optional = true, features = ["alloc"] }
time = { version = "0.3.4", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion der_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "der_derive"
version = "0.8.0-pre.0"
version = "0.8.0-rc.0"
description = "Custom derive support for the `der` crate's `Choice` and `Sequence` traits"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
Expand Down
Loading