ecdsa v0.14.0-pre.2 (#453)

This commit is contained in:
Tony Arcieri
2022-03-16 11:21:17 -06:00
committed by GitHub
parent f6d0130a8d
commit 6ddc647172
3 changed files with 10 additions and 12 deletions
Generated
+1 -1
View File
@@ -135,7 +135,7 @@ dependencies = [
[[package]]
name = "ecdsa"
version = "0.14.0-pre.1"
version = "0.14.0-pre.2"
dependencies = [
"der",
"elliptic-curve",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "ecdsa"
version = "0.14.0-pre.1" # Also update html_root_url in lib.rs when bumping this
version = "0.14.0-pre.2"
description = """
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard)
+8 -10
View File
@@ -1,4 +1,12 @@
#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms)]
//! ## `serde` support
//!
@@ -31,16 +39,6 @@
//! [`ring-compat`]: https://docs.rs/ring-compat
//! [*ring*]: https://docs.rs/ring
#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/ecdsa/0.14.0-pre.1"
)]
#[cfg(feature = "alloc")]
extern crate alloc;