Skip to content

Commit 92c1562

Browse files
committed
update 1.5.0 crate
1 parent 0f9cbca commit 92c1562

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

bounty/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ protobuf = "2.22.1"
1313
rand = "0.3.17"
1414
sha3 = "0.8"
1515
wedpr_l_crypto_zkp_discrete_logarithm_proof = "1.0.0"
16-
wedpr_l_crypto_zkp_range_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto", branch = "main" }
16+
wedpr_l_crypto_zkp_range_proof = "1.2.0"
1717
wedpr_l_crypto_zkp_utils = "1.0.0"
1818
wedpr_l_macros = "1.0.0"
1919
wedpr_l_protos = "1.0.0"
2020
wedpr_l_utils = "1.0.0"
21-
wedpr_s_protos = "1.3.0"
22-
wedpr_s_selective_certificate_disclosure = "1.3.0"
21+
wedpr_s_protos = { path = "../protos" }
22+
wedpr_s_selective_certificate_disclosure = { path = "../solution/selective_certificate_disclosure" }
2323

2424
wedpr_s_verifiable_confidential_ledger = { path = "../solution/verifiable_confidential_ledger" }
2525

ffi/ffi_c/ffi_c_ktb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ protobuf = "2.22.1"
1616
wedpr_ffi_common = "1.0.0"
1717
wedpr_ffi_macros = "1.0.0"
1818
wedpr_l_macros = "1.0.0"
19-
wedpr_s_hierarchical_deterministic_key = "1.3.0"
20-
wedpr_s_protos = "1.3.0"
19+
wedpr_s_hierarchical_deterministic_key = { path = "../../../solution/key_tool_box/hierarchical_deterministic_key" }
20+
wedpr_s_protos = { path = "../../../protos" }
2121

2222
# This is required to generate C/C++ header files.
2323
[build-dependencies]

ffi/ffi_c/ffi_c_scd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ protobuf = "2.22.1"
1616
wedpr_ffi_common = "1.0.0"
1717
wedpr_ffi_macros = "1.0.0"
1818
wedpr_l_macros = "1.0.0"
19-
wedpr_s_protos = "1.3.0"
20-
wedpr_s_selective_certificate_disclosure = "1.3.0"
19+
wedpr_s_protos = { path = "../../../protos" }
20+
wedpr_s_selective_certificate_disclosure = { path = "../../../solution/selective_certificate_disclosure" }
2121

2222
# This is required to generate C/C++ header files.
2323
[build-dependencies]

ffi/ffi_java/ffi_java_ktb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jni = "0.13.0"
1515
protobuf = "2.22.1"
1616
wedpr_ffi_common = "1.1.0"
1717
wedpr_ffi_macros = "1.1.0"
18-
wedpr_s_hierarchical_deterministic_key = "1.3.0"
19-
wedpr_s_protos = "1.3.0"
18+
wedpr_s_hierarchical_deterministic_key = { path = "../../../solution/key_tool_box/hierarchical_deterministic_key" }
19+
wedpr_s_protos = { path = "../../../protos" }
2020

2121
# This is required to generate C/C++ header files.
2222
[build-dependencies]

ffi/ffi_java/ffi_java_scd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ wedpr_ffi_common = "1.0.0"
1616
wedpr_ffi_macros = "1.0.0"
1717
wedpr_l_protos = "1.0.0"
1818

19-
wedpr_s_protos = "1.3.0"
20-
wedpr_s_selective_certificate_disclosure = "1.3.0"
19+
wedpr_s_protos = { path = "../../../protos" }
20+
wedpr_s_selective_certificate_disclosure = { path = "../../../solution/selective_certificate_disclosure" }
2121

2222
# This is required to generate C/C++ header files.
2323
[build-dependencies]

protos/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wedpr_s_protos"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = [ "WeDPR <wedpr@webank.com>" ]
55
edition = "2018"
66
license = "Apache-2.0"

solution/anonymous_ciphertext_voting/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ version = "1.5.0"
44
authors = [ "WeDPR <wedpr@webank.com>" ]
55
edition = "2018"
66
license = "Apache-2.0"
7-
description = "Library of WeDPR protobuf definitions and their generated code."
7+
description = "Library of anonymous ciphertext voting (ACV) solution."
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
1212
curve25519-dalek = { version = "1", features = [ "serde" ] }
1313
lazy_static = "1.4.0"
14-
wedpr_l_crypto_hash_keccak256 = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
15-
wedpr_l_crypto_signature_secp256k1 = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
16-
wedpr_l_crypto_zkp_discrete_logarithm_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
17-
wedpr_l_crypto_zkp_range_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
18-
wedpr_l_crypto_zkp_utils = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
14+
wedpr_l_crypto_hash_keccak256 = "1.1.0"
15+
wedpr_l_crypto_signature_secp256k1 = "1.1.0"
16+
wedpr_l_crypto_zkp_discrete_logarithm_proof = "1.2.0"
17+
wedpr_l_crypto_zkp_range_proof = "1.2.0"
18+
wedpr_l_crypto_zkp_utils = "1.2.0"
1919
wedpr_l_macros = "1.0.0"
20-
wedpr_l_protos = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
20+
wedpr_l_protos = "1.2.0"
2121
wedpr_l_utils = "1.1.0"
2222
wedpr_s_protos = { path = "../../protos" }
2323
colored = "1.8"

solution/key_tool_box/hierarchical_deterministic_key/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ hdk_ext_lib = { package = "wagyu-hdk", version = "0.6.4" }
1616
wedpr_l_macros = "1.0.0"
1717
wedpr_l_utils = "1.0.0"
1818

19-
wedpr_s_protos = "1.3.0"
19+
wedpr_s_protos = { path = "../../../protos" }
2020

2121
[dev-dependencies]
2222
wedpr_l_common_coder_base64 = "1.0.0"

solution/selective_certificate_disclosure/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ serde_json = "1.0.41"
1616
wedpr-indy-crypto = "0.4.5"
1717
wedpr_l_macros = "1.0.0"
1818
wedpr_l_utils = "1.0.0"
19-
wedpr_s_protos = "1.3.0"
19+
wedpr_s_protos = { path = "../../protos" }
2020

2121
[dev-dependencies]
2222
criterion = "0.2"

solution/verifiable_confidential_ledger/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ curve25519-dalek = { version = "1", features = [ "serde" ] }
1414
protobuf = "2.22.1"
1515

1616
wedpr_l_crypto_zkp_discrete_logarithm_proof = "1.1.0"
17-
wedpr_l_crypto_zkp_range_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto", branch = "main" }
17+
wedpr_l_crypto_zkp_range_proof = "1.2.0"
1818
wedpr_l_crypto_zkp_utils = "1.1.0"
1919

2020
wedpr_l_macros = "1.0.0"

0 commit comments

Comments
 (0)