Rename sign folder to crypto

Inspired by #3 and #5.
This commit is contained in:
Luke Parker 2022-05-03 00:46:50 -04:00
parent 9ccf683e9d
commit 87f38cafe4
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
15 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
[workspace]
members = [
"sign/frost",
"sign/dalek-ff-group",
"crypto/frost",
"crypto/dalek-ff-group",
"coins/monero",
]

View file

@ -20,8 +20,8 @@ curve25519-dalek = { version = "3.2", features = ["std", "simd_backend"] }
ff = { version = "0.11", optional = true }
group = { version = "0.11", optional = true }
dalek-ff-group = { path = "../../sign/dalek-ff-group", optional = true }
frost = { path = "../../sign/frost", optional = true }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", optional = true }
frost = { path = "../../crypto/frost", optional = true }
# Locked to this specific patch version due to a bug we compensate for
monero = { version = "0.16.0", features = ["experimental"] }