Skip to content

Commit

Permalink
der v0.8.0-rc.0 (#1458)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Jul 26, 2024
1 parent 82ffb0e commit 03af063
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 21 deletions.
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

0 comments on commit 03af063

Please sign in to comment.