mirror of
https://github.com/RustCrypto/signatures
synced 2026-06-21 13:45:42 +00:00
Rename 'signature-traits' crate to 'signature'
This commit is contained in:
+1
-1
@@ -2,5 +2,5 @@
|
||||
members = [
|
||||
"ecdsa",
|
||||
"ed25519",
|
||||
"signature-traits",
|
||||
"signature-crate",
|
||||
]
|
||||
|
||||
+2
-2
@@ -5,9 +5,9 @@ authors = ["RustCrypto Developers"]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
description = "Elliptic Curve Digital Signature Algorithm"
|
||||
documentation = "https://docs.rs/ecdsa"
|
||||
repository = "https://github.com/RustCrypto/ecdsa"
|
||||
repository = "https://github.com/RustCrypto/signatures"
|
||||
categories = ["cryptography", "no-std"]
|
||||
keywords = ["crypto", "ecc", "ecdsa", "signature", "signing"]
|
||||
|
||||
[dependencies]
|
||||
signature-traits = { version = "0", path = "../signature-traits" }
|
||||
signature = { version = "0", path = "../signature-crate" }
|
||||
|
||||
+2
-2
@@ -5,9 +5,9 @@ authors = ["RustCrypto Developers"]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
description = "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)"
|
||||
documentation = "https://docs.rs/ed25519"
|
||||
repository = "https://github.com/RustCrypto/ed25519"
|
||||
repository = "https://github.com/RustCrypto/signatures"
|
||||
categories = ["cryptography", "no-std"]
|
||||
keywords = ["crypto", "curve25519", "ecc", "signature", "signing"]
|
||||
|
||||
[dependencies]
|
||||
signature-traits = { version = "0", path = "../signature-traits" }
|
||||
signature = { version = "0", path = "../signature-crate" }
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
[package]
|
||||
name = "signature-traits"
|
||||
name = "signature"
|
||||
version = "0.0.0"
|
||||
authors = ["RustCrypto Developers"]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
description = "Traits for cryptographic signature algorithms"
|
||||
documentation = "https://docs.rs/signature-traits"
|
||||
repository = "https://github.com/RustCrypto/signature-algorithms"
|
||||
documentation = "https://docs.rs/signature"
|
||||
repository = "https://github.com/RustCrypto/signatures"
|
||||
keywords = ["crypto", "signature", "signing"]
|
||||
categories = ["cryptography", "no-std"]
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#![crate_name = "signature"]
|
||||
@@ -1 +0,0 @@
|
||||
#![crate_name = "signature_traits"]
|
||||
Reference in New Issue
Block a user