Move ecdsa crate to parent dir

This commit is contained in:
kilic
2022-03-10 21:05:34 +03:00
parent bd1addedb1
commit abcdddf653
4 changed files with 3 additions and 3 deletions

View File

@@ -4,5 +4,5 @@ members = [
"integer",
"ecc/circuit",
"ecc/secp256k1",
"ecdsa/circuit"
"ecdsa"
]

View File

@@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
secp256k1 = { path = "../../ecc/secp256k1/", default-features = true, optional = true }
ecc = { path = "../../ecc/circuit/", default-features = false }
secp256k1 = { path = "../ecc/secp256k1/", default-features = true, optional = true }
ecc = { path = "../ecc/circuit/", default-features = false }
num-bigint = { version = "0.4", features = ["rand"] }
num-integer = "0.1"
num-traits = "0.2"