Change address of zkp library
This commit is contained in:
parent
8bf938c81b
commit
f7f7a36812
|
@ -822,6 +822,12 @@ version = "0.3.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "hex"
|
||||||
|
version = "0.3.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hex"
|
name = "hex"
|
||||||
version = "0.4.3"
|
version = "0.4.3"
|
||||||
|
@ -1167,6 +1173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
|
checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"byteorder",
|
"byteorder",
|
||||||
|
"hex 0.3.2",
|
||||||
"keccak",
|
"keccak",
|
||||||
"rand_core 0.6.4",
|
"rand_core 0.6.4",
|
||||||
"zeroize",
|
"zeroize",
|
||||||
|
@ -1687,7 +1694,7 @@ dependencies = [
|
||||||
"crc64",
|
"crc64",
|
||||||
"futures",
|
"futures",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"hex",
|
"hex 0.4.3",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
@ -1883,7 +1890,7 @@ checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"chrono",
|
"chrono",
|
||||||
"hex",
|
"hex 0.4.3",
|
||||||
"indexmap 1.9.3",
|
"indexmap 1.9.3",
|
||||||
"indexmap 2.0.0",
|
"indexmap 2.0.0",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -2510,7 +2517,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zkp"
|
name = "zkp"
|
||||||
version = "0.7.0"
|
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 = [
|
dependencies = [
|
||||||
"curve25519-dalek",
|
"curve25519-dalek",
|
||||||
"merlin 3.0.0",
|
"merlin 3.0.0",
|
||||||
|
|
|
@ -22,7 +22,7 @@ rand = "0.8.5"
|
||||||
reqwest = { version = "0.11", features = ["json", "stream"]}
|
reqwest = { version = "0.11", features = ["json", "stream"]}
|
||||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||||
serde_with = "3.4.0"
|
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-library = { path = "../lox-library", version = "0.1.0"}
|
||||||
lox_utils = { path = "../lox-utils", version = "0.1.0"}
|
lox_utils = { path = "../lox-utils", version = "0.1.0"}
|
||||||
|
|
|
@ -27,7 +27,7 @@ base64 = "0.21"
|
||||||
time = "0.3.29"
|
time = "0.3.29"
|
||||||
subtle = "2.5"
|
subtle = "2.5"
|
||||||
thiserror = "1.0.49"
|
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]
|
[features]
|
||||||
#default = ["u64_backend"]
|
#default = ["u64_backend"]
|
||||||
|
|
Loading…
Reference in New Issue