mirror of
https://github.com/RustCrypto/signatures
synced 2026-06-21 13:45:42 +00:00
ecdsa v0.14.0-pre.2 (#453)
This commit is contained in:
Generated
+1
-1
@@ -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
@@ -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
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user