Skip to content

Commit

Permalink
update 1.5.0 crate
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoXuan40404 committed Sep 29, 2021
1 parent 0f9cbca commit 92c1562
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions bounty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ protobuf = "2.22.1"
rand = "0.3.17"
sha3 = "0.8"
wedpr_l_crypto_zkp_discrete_logarithm_proof = "1.0.0"
wedpr_l_crypto_zkp_range_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto", branch = "main" }
wedpr_l_crypto_zkp_range_proof = "1.2.0"
wedpr_l_crypto_zkp_utils = "1.0.0"
wedpr_l_macros = "1.0.0"
wedpr_l_protos = "1.0.0"
wedpr_l_utils = "1.0.0"
wedpr_s_protos = "1.3.0"
wedpr_s_selective_certificate_disclosure = "1.3.0"
wedpr_s_protos = { path = "../protos" }
wedpr_s_selective_certificate_disclosure = { path = "../solution/selective_certificate_disclosure" }

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

Expand Down
4 changes: 2 additions & 2 deletions ffi/ffi_c/ffi_c_ktb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ protobuf = "2.22.1"
wedpr_ffi_common = "1.0.0"
wedpr_ffi_macros = "1.0.0"
wedpr_l_macros = "1.0.0"
wedpr_s_hierarchical_deterministic_key = "1.3.0"
wedpr_s_protos = "1.3.0"
wedpr_s_hierarchical_deterministic_key = { path = "../../../solution/key_tool_box/hierarchical_deterministic_key" }
wedpr_s_protos = { path = "../../../protos" }

# This is required to generate C/C++ header files.
[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ffi/ffi_c/ffi_c_scd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ protobuf = "2.22.1"
wedpr_ffi_common = "1.0.0"
wedpr_ffi_macros = "1.0.0"
wedpr_l_macros = "1.0.0"
wedpr_s_protos = "1.3.0"
wedpr_s_selective_certificate_disclosure = "1.3.0"
wedpr_s_protos = { path = "../../../protos" }
wedpr_s_selective_certificate_disclosure = { path = "../../../solution/selective_certificate_disclosure" }

# This is required to generate C/C++ header files.
[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ffi/ffi_java/ffi_java_ktb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jni = "0.13.0"
protobuf = "2.22.1"
wedpr_ffi_common = "1.1.0"
wedpr_ffi_macros = "1.1.0"
wedpr_s_hierarchical_deterministic_key = "1.3.0"
wedpr_s_protos = "1.3.0"
wedpr_s_hierarchical_deterministic_key = { path = "../../../solution/key_tool_box/hierarchical_deterministic_key" }
wedpr_s_protos = { path = "../../../protos" }

# This is required to generate C/C++ header files.
[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ffi/ffi_java/ffi_java_scd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ wedpr_ffi_common = "1.0.0"
wedpr_ffi_macros = "1.0.0"
wedpr_l_protos = "1.0.0"

wedpr_s_protos = "1.3.0"
wedpr_s_selective_certificate_disclosure = "1.3.0"
wedpr_s_protos = { path = "../../../protos" }
wedpr_s_selective_certificate_disclosure = { path = "../../../solution/selective_certificate_disclosure" }

# This is required to generate C/C++ header files.
[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion protos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wedpr_s_protos"
version = "1.4.0"
version = "1.5.0"
authors = [ "WeDPR <[email protected]>" ]
edition = "2018"
license = "Apache-2.0"
Expand Down
14 changes: 7 additions & 7 deletions solution/anonymous_ciphertext_voting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ version = "1.5.0"
authors = [ "WeDPR <[email protected]>" ]
edition = "2018"
license = "Apache-2.0"
description = "Library of WeDPR protobuf definitions and their generated code."
description = "Library of anonymous ciphertext voting (ACV) solution."

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

[dependencies]
curve25519-dalek = { version = "1", features = [ "serde" ] }
lazy_static = "1.4.0"
wedpr_l_crypto_hash_keccak256 = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
wedpr_l_crypto_signature_secp256k1 = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
wedpr_l_crypto_zkp_discrete_logarithm_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
wedpr_l_crypto_zkp_range_proof = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
wedpr_l_crypto_zkp_utils = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
wedpr_l_crypto_hash_keccak256 = "1.1.0"
wedpr_l_crypto_signature_secp256k1 = "1.1.0"
wedpr_l_crypto_zkp_discrete_logarithm_proof = "1.2.0"
wedpr_l_crypto_zkp_range_proof = "1.2.0"
wedpr_l_crypto_zkp_utils = "1.2.0"
wedpr_l_macros = "1.0.0"
wedpr_l_protos = { git = "https://github.com/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "release-1.2.0" }
wedpr_l_protos = "1.2.0"
wedpr_l_utils = "1.1.0"
wedpr_s_protos = { path = "../../protos" }
colored = "1.8"
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ hdk_ext_lib = { package = "wagyu-hdk", version = "0.6.4" }
wedpr_l_macros = "1.0.0"
wedpr_l_utils = "1.0.0"

wedpr_s_protos = "1.3.0"
wedpr_s_protos = { path = "../../../protos" }

[dev-dependencies]
wedpr_l_common_coder_base64 = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion solution/selective_certificate_disclosure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ serde_json = "1.0.41"
wedpr-indy-crypto = "0.4.5"
wedpr_l_macros = "1.0.0"
wedpr_l_utils = "1.0.0"
wedpr_s_protos = "1.3.0"
wedpr_s_protos = { path = "../../protos" }

[dev-dependencies]
criterion = "0.2"
2 changes: 1 addition & 1 deletion solution/verifiable_confidential_ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ curve25519-dalek = { version = "1", features = [ "serde" ] }
protobuf = "2.22.1"

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

wedpr_l_macros = "1.0.0"
Expand Down

0 comments on commit 92c1562

Please sign in to comment.