Change address of zkp library

This commit is contained in:
onyinyang 2023-10-10 17:05:24 -04:00
parent 8bf938c81b
commit f7f7a36812
No known key found for this signature in database
GPG Key ID: 156A6435430C2036
3 changed files with 12 additions and 5 deletions

13
Cargo.lock generated
View File

@ -822,6 +822,12 @@ version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
[[package]]
name = "hex"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
[[package]]
name = "hex"
version = "0.4.3"
@ -1167,6 +1173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
dependencies = [
"byteorder",
"hex 0.3.2",
"keccak",
"rand_core 0.6.4",
"zeroize",
@ -1687,7 +1694,7 @@ dependencies = [
"crc64",
"futures",
"futures-util",
"hex",
"hex 0.4.3",
"reqwest",
"serde",
"serde_json",
@ -1883,7 +1890,7 @@ checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
dependencies = [
"base64",
"chrono",
"hex",
"hex 0.4.3",
"indexmap 1.9.3",
"indexmap 2.0.0",
"serde",
@ -2510,7 +2517,7 @@ dependencies = [
[[package]]
name = "zkp"
version = "0.7.0"
source = "git+https://git@gitlab.torproject.org/onyinyang/test-zkp.git#17010ef440c36a31c28c832ab932911d4092ee97"
source = "git+https://git@gitlab.torproject.org/onyinyang/lox-zkp.git?rev=a174be65#a174be6503d09514e9102091547308e9e94648b0"
dependencies = [
"curve25519-dalek",
"merlin 3.0.0",

View File

@ -22,7 +22,7 @@ rand = "0.8.5"
reqwest = { version = "0.11", features = ["json", "stream"]}
serde = { version = "1.0", features = ["derive", "rc"] }
serde_with = "3.4.0"
zkp = { git = "https://git@gitlab.torproject.org/onyinyang/test-zkp.git"}
zkp = { git = "https://git@gitlab.torproject.org/onyinyang/lox-zkp.git", rev = "a174be65"}
lox-library = { path = "../lox-library", version = "0.1.0"}
lox_utils = { path = "../lox-utils", version = "0.1.0"}

View File

@ -27,7 +27,7 @@ base64 = "0.21"
time = "0.3.29"
subtle = "2.5"
thiserror = "1.0.49"
zkp = { git = "https://git@gitlab.torproject.org/onyinyang/test-zkp.git"}
zkp = { git = "https://git@gitlab.torproject.org/onyinyang/lox-zkp.git", rev = "a174be65", features = ["debug-transcript"]}
[features]
#default = ["u64_backend"]