Skip to content

Commit

Permalink
signature_derive: match directory name with crate (#1394)
Browse files Browse the repository at this point in the history
The crate name contains an underscore, not a hyphen, but #1391
accidentally used `signature-derive` instead
  • Loading branch information
tarcieri authored Nov 12, 2023
1 parent c85a5b8 commit 11e7c73
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/signature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --release
working-directory: signature-derive
working-directory: signature_derive

doc:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
"kem",
"password-hash",
"signature",
"signature-derive",
"signature_derive",
"universal-hash",
]

Expand Down
2 changes: 1 addition & 1 deletion signature/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
rust-version = "1.60"

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

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ documentation = "https://docs.rs/signature"
repository = "https://github.com/RustCrypto/traits/tree/master/signature-derive"
readme = "README.md"
edition = "2021"
rust-version = "1.56"
rust-version = "1.60"
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories = ["cryptography", "no-std"]

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 11e7c73

Please sign in to comment.