Skip to content

Commit 86f7031

Browse files
authored
Downgrade der to v0.7 (#743)
This unblocks a release by downgrading to the latest stable version so we don't need to wait on a final release of v0.8.
1 parent b0e2657 commit 86f7031

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rust-version = "1.83"
2020
subtle = { version = "2.6", default-features = false }
2121

2222
# optional dependencies
23-
der = { version = "0.8.0-rc.1", optional = true, default-features = false }
23+
der = { version = "0.7", optional = true, default-features = false }
2424
hybrid-array = { version = "0.2", optional = true }
2525
num-traits = { version = "0.2.19", default-features = false }
2626
rand_core = { version = "0.6.4", optional = true }

src/uint/encoding/der.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ impl<'a, const LIMBS: usize> DecodeValue<'a> for Uint<LIMBS>
3535
where
3636
Uint<LIMBS>: ArrayEncoding,
3737
{
38-
type Error = der::Error;
39-
4038
fn decode_value<R: der::Reader<'a>>(reader: &mut R, header: der::Header) -> der::Result<Self> {
4139
UintRef::decode_value(reader, header)?.try_into()
4240
}

0 commit comments

Comments
 (0)