Skip to content

Commit 11e7c73

Browse files
authored
signature_derive: match directory name with crate (#1394)
The crate name contains an underscore, not a hyphen, but #1391 accidentally used `signature-derive` instead
1 parent c85a5b8 commit 11e7c73

File tree

9 files changed

+4
-4
lines changed

9 files changed

+4
-4
lines changed

.github/workflows/signature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
toolchain: ${{ matrix.rust }}
8181
- run: cargo test --release
82-
working-directory: signature-derive
82+
working-directory: signature_derive
8383

8484
doc:
8585
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
"kem",
1212
"password-hash",
1313
"signature",
14-
"signature-derive",
14+
"signature_derive",
1515
"universal-hash",
1616
]
1717

signature/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2021"
1313
rust-version = "1.60"
1414

1515
[dependencies]
16-
derive = { package = "signature_derive", version = "2", optional = true, path = "../signature-derive" }
16+
derive = { package = "signature_derive", version = "2", optional = true, path = "../signature_derive" }
1717
digest = { version = "0.10.6", optional = true, default-features = false }
1818
rand_core = { version = "0.6.4", optional = true, default-features = false }
1919

File renamed without changes.

signature-derive/Cargo.toml renamed to signature_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation = "https://docs.rs/signature"
88
repository = "https://github.com/RustCrypto/traits/tree/master/signature-derive"
99
readme = "README.md"
1010
edition = "2021"
11-
rust-version = "1.56"
11+
rust-version = "1.60"
1212
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
1313
categories = ["cryptography", "no-std"]
1414

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)