From e0e146d28c3ee45ab1d3023d0ad1dbb145143f72 Mon Sep 17 00:00:00 2001 From: HaoXuan40404 <444649358@qq.com> Date: Tue, 30 Mar 2021 17:42:51 +0800 Subject: [PATCH] publish crypto 1.1.0 --- common/coder/base64/Cargo.toml | 4 ++-- common/coder/hex/Cargo.toml | 4 ++-- common/utils/Cargo.toml | 2 +- crypto/block_cipher/aes/Cargo.toml | 2 +- crypto/block_cipher/sm4/Cargo.toml | 2 +- crypto/ecies/secp256k1/Cargo.toml | 4 ++-- crypto/hash/blake2b/Cargo.toml | 2 +- crypto/hash/keccak256/Cargo.toml | 4 ++-- crypto/hash/ripemd160/Cargo.toml | 2 +- crypto/hash/sha3/Cargo.toml | 2 +- crypto/hash/sm3/Cargo.toml | 4 ++-- crypto/signature/ed25519/Cargo.toml | 4 ++-- crypto/signature/secp256k1/Cargo.toml | 4 ++-- crypto/signature/sm2/Cargo.toml | 6 ++--- crypto/vrf/curve25519/Cargo.toml | 8 +++---- .../zkp/discrete_logarithm_proof/Cargo.toml | 8 +++---- crypto/zkp/range_proof/Cargo.toml | 6 ++--- crypto/zkp/utils/Cargo.toml | 6 ++--- ffi/ffi_c/ffi_c_crypto/Cargo.toml | 8 +++---- ffi/ffi_c/ffi_c_crypto_binary/Cargo.toml | 6 ++--- ffi/ffi_c/ffi_c_fisco_bcos/Cargo.toml | 6 ++--- ffi/ffi_common/Cargo.toml | 10 ++++---- ffi/ffi_java/ffi_java_crypto/Cargo.toml | 24 +++++++++---------- .../ffi_java_crypto_binary/Cargo.toml | 6 ++--- ffi/ffi_macros/Cargo.toml | 2 +- protos/Cargo.toml | 2 +- third_party/fisco_bcos/Cargo.toml | 2 +- 27 files changed, 70 insertions(+), 70 deletions(-) diff --git a/common/coder/base64/Cargo.toml b/common/coder/base64/Cargo.toml index 87a850e..32a53e2 100644 --- a/common/coder/base64/Cargo.toml +++ b/common/coder/base64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_common_coder_base64" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -11,4 +11,4 @@ description = "Library of WeDPR base64." [dependencies] base64 = "0.13.0" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils/" } +wedpr_l_utils = "1.1.0" diff --git a/common/coder/hex/Cargo.toml b/common/coder/hex/Cargo.toml index bac0fd1..734dadb 100644 --- a/common/coder/hex/Cargo.toml +++ b/common/coder/hex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_common_coder_hex" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -11,4 +11,4 @@ description = "Library of WeDPR hex." [dependencies] hex = "0.4.2" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils/" } +wedpr_l_utils = "1.1.0" diff --git a/common/utils/Cargo.toml b/common/utils/Cargo.toml index 16c9d92..754c703 100644 --- a/common/utils/Cargo.toml +++ b/common/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_utils" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" diff --git a/crypto/block_cipher/aes/Cargo.toml b/crypto/block_cipher/aes/Cargo.toml index 606d9ce..ea58a38 100644 --- a/crypto/block_cipher/aes/Cargo.toml +++ b/crypto/block_cipher/aes/Cargo.toml @@ -13,4 +13,4 @@ aes = "0.6.0" block-modes = "0.7.0" rand = "0.8.3" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/block_cipher/sm4/Cargo.toml b/crypto/block_cipher/sm4/Cargo.toml index 31dc1e2..1fe53b2 100644 --- a/crypto/block_cipher/sm4/Cargo.toml +++ b/crypto/block_cipher/sm4/Cargo.toml @@ -13,4 +13,4 @@ block-modes = "0.7.0" rand = "0.8.3" sm4 = "0.3.0" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/ecies/secp256k1/Cargo.toml b/crypto/ecies/secp256k1/Cargo.toml index 1897226..d583f0e 100644 --- a/crypto/ecies/secp256k1/Cargo.toml +++ b/crypto/ecies/secp256k1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_ecies_secp256k1" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -11,4 +11,4 @@ description = "Library of WeDPR shared ecies." [dependencies] ecies = "0.1.4" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/hash/blake2b/Cargo.toml b/crypto/hash/blake2b/Cargo.toml index 062e4ed..d4bcf4a 100644 --- a/crypto/hash/blake2b/Cargo.toml +++ b/crypto/hash/blake2b/Cargo.toml @@ -11,4 +11,4 @@ description = "Library of WeDPR shared Hash Function implement by blake2." [dependencies] blake2 = "0.9.1" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/hash/keccak256/Cargo.toml b/crypto/hash/keccak256/Cargo.toml index 089c3f4..247968e 100644 --- a/crypto/hash/keccak256/Cargo.toml +++ b/crypto/hash/keccak256/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_hash_keccak256" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -11,4 +11,4 @@ description = "Library of WeDPR shared Hash Function implement by keccak256." [dependencies] sha3 = "0.8" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/hash/ripemd160/Cargo.toml b/crypto/hash/ripemd160/Cargo.toml index 7f47111..0b6eda6 100644 --- a/crypto/hash/ripemd160/Cargo.toml +++ b/crypto/hash/ripemd160/Cargo.toml @@ -11,4 +11,4 @@ description = "Library of WeDPR shared Hash Function implement by blake2." [dependencies] ripemd160 = "0.9.1" wedpr_l_macros = "1.0.0" -wedpr_l_utils = {path = "../../../common/utils"} +wedpr_l_utils = "1.1.0" diff --git a/crypto/hash/sha3/Cargo.toml b/crypto/hash/sha3/Cargo.toml index 13a7448..4c59acc 100644 --- a/crypto/hash/sha3/Cargo.toml +++ b/crypto/hash/sha3/Cargo.toml @@ -11,4 +11,4 @@ description = "Library of WeDPR shared Hash Function implement by sha3." [dependencies] sha3 = "0.8" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/hash/sm3/Cargo.toml b/crypto/hash/sm3/Cargo.toml index 9bca654..7b6022f 100644 --- a/crypto/hash/sm3/Cargo.toml +++ b/crypto/hash/sm3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_hash_sm3" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -11,4 +11,4 @@ description = "Library of WeDPR shared Hash Function implement by sm3." [dependencies] wedpr_l_libsm = "0.3.1" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/signature/ed25519/Cargo.toml b/crypto/signature/ed25519/Cargo.toml index 74cb450..d9e21f6 100644 --- a/crypto/signature/ed25519/Cargo.toml +++ b/crypto/signature/ed25519/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_signature_ed25519" -version = "1.0.1" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -14,4 +14,4 @@ lazy_static = "1.4.0" rand = "0.7" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/signature/secp256k1/Cargo.toml b/crypto/signature/secp256k1/Cargo.toml index 3feedf8..9addc7e 100644 --- a/crypto/signature/secp256k1/Cargo.toml +++ b/crypto/signature/secp256k1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_signature_secp256k1" -version = "1.0.1" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -13,4 +13,4 @@ lazy_static = "1.4.0" rand = "0.6" secp256k1 = { version = "0.19.0", features = [ "recovery", "rand" ] } wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/signature/sm2/Cargo.toml b/crypto/signature/sm2/Cargo.toml index 2942aa0..6926aca 100644 --- a/crypto/signature/sm2/Cargo.toml +++ b/crypto/signature/sm2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_signature_sm2" -version = "1.0.1" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,6 +10,6 @@ description = "Library of WeDPR shared Siganture Function implement by sm2." [dependencies] lazy_static = "1.4.0" -wedpr_l_libsm = { git = "https://github.com.cnpmjs.org/WeDPR-Team/libsm" } +wedpr_l_libsm = "0.3.2" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/vrf/curve25519/Cargo.toml b/crypto/vrf/curve25519/Cargo.toml index b7dd88a..b44542f 100644 --- a/crypto/vrf/curve25519/Cargo.toml +++ b/crypto/vrf/curve25519/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_vrf_curve25519" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -12,7 +12,7 @@ description = "Library of WeDPR shared VRF Function implement by curve25519." curve25519-dalek = { version = "1", features = [ "serde" ] } rand = "0.6" sha3 = "0.8.2" -wedpr_l_crypto_hash_keccak256 = { path = "../../hash/keccak256" } -wedpr_l_crypto_zkp_utils = { path = "../../zkp/utils" } +wedpr_l_crypto_hash_keccak256 = "1.1.0" +wedpr_l_crypto_zkp_utils = "1.1.0" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/zkp/discrete_logarithm_proof/Cargo.toml b/crypto/zkp/discrete_logarithm_proof/Cargo.toml index a7408e6..50af390 100644 --- a/crypto/zkp/discrete_logarithm_proof/Cargo.toml +++ b/crypto/zkp/discrete_logarithm_proof/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_zkp_discrete_logarithm_proof" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,7 +10,7 @@ description = "Library of WeDPR shared zkp Function implement discrete logarithm [dependencies] curve25519-dalek = { version = "1", features = [ "serde" ] } -wedpr_l_crypto_zkp_utils = { path = "../utils" } +wedpr_l_crypto_zkp_utils = "1.1.0" wedpr_l_macros = "1.0.0" -wedpr_l_protos = { path = "../../../protos" } -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_protos = "1.1.0" +wedpr_l_utils = "1.1.0" diff --git a/crypto/zkp/range_proof/Cargo.toml b/crypto/zkp/range_proof/Cargo.toml index 358a73a..7d2d8d9 100644 --- a/crypto/zkp/range_proof/Cargo.toml +++ b/crypto/zkp/range_proof/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_zkp_range_proof" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -12,6 +12,6 @@ description = "Library of WeDPR shared zkp Function implement range proof." bulletproofs = "1.0.4" curve25519-dalek = { version = "1", features = [ "serde" ] } merlin = "1" -wedpr_l_crypto_zkp_utils = "1.0.0" +wedpr_l_crypto_zkp_utils = "1.1.0" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/crypto/zkp/utils/Cargo.toml b/crypto/zkp/utils/Cargo.toml index 56040f0..bb833a4 100644 --- a/crypto/zkp/utils/Cargo.toml +++ b/crypto/zkp/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_crypto_zkp_utils" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -13,6 +13,6 @@ curve25519-dalek = { version = "1", features = [ "serde" ] } lazy_static = "1.4.0" rand = "0.6" sha3 = "0.8.0" -wedpr_l_crypto_hash_keccak256 = { path = "../../hash/keccak256" } +wedpr_l_crypto_hash_keccak256 = "1.1.0" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/ffi/ffi_c/ffi_c_crypto/Cargo.toml b/ffi/ffi_c/ffi_c_crypto/Cargo.toml index 531c24a..00413e0 100644 --- a/ffi/ffi_c/ffi_c_crypto/Cargo.toml +++ b/ffi/ffi_c/ffi_c_crypto/Cargo.toml @@ -31,9 +31,9 @@ lazy_static = "1.4.0" libc = "0.2.60" protobuf = "2.22.1" wedpr_ffi_c_common = "1.0.0" -wedpr_ffi_common_base64 = { package = "wedpr_ffi_common", version = "1.0.0", features = [ "wedpr_f_base64" ], default-features = false, optional = true } -wedpr_ffi_common_hex = { package = "wedpr_ffi_common", version = "1.0.0", features = [ "wedpr_f_hex" ], default-features = false, optional = true } -wedpr_ffi_macros = "1.0.0" +wedpr_ffi_common_base64 = { package = "wedpr_ffi_common", version = "1.1.0", features = [ "wedpr_f_base64" ], default-features = false, optional = true } +wedpr_ffi_common_hex = { package = "wedpr_ffi_common", version = "1.1.0", features = [ "wedpr_f_hex" ], default-features = false, optional = true } +wedpr_ffi_macros = "1.1.0" wedpr_l_crypto_block_cipher_aes = { path = "../../../crypto/block_cipher/aes", optional = true } wedpr_l_crypto_block_cipher_sm4 = { path = "../../../crypto/block_cipher/sm4", optional = true } wedpr_l_crypto_ecies_secp256k1 = { path = "../../../crypto/ecies/secp256k1", optional = true } @@ -48,7 +48,7 @@ wedpr_l_crypto_signature_sm2 = { path = "../../../crypto/signature/sm2", optiona wedpr_l_crypto_vrf_curve25519 = { path = "../../../crypto/vrf/curve25519", optional = true } wedpr_l_macros = "1.0.0" wedpr_l_protos = { path = "../../../protos" } -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" # This is required to generate C/C++ header files. [build-dependencies] cbindgen = "0.9.0" diff --git a/ffi/ffi_c/ffi_c_crypto_binary/Cargo.toml b/ffi/ffi_c/ffi_c_crypto_binary/Cargo.toml index bf84bf3..a294354 100644 --- a/ffi/ffi_c/ffi_c_crypto_binary/Cargo.toml +++ b/ffi/ffi_c/ffi_c_crypto_binary/Cargo.toml @@ -29,8 +29,8 @@ lazy_static = "1.4.0" libc = "0.2.60" protobuf = "2.22.1" wedpr_ffi_c_common = "1.0.0" -wedpr_ffi_common = { path = "../../ffi_common/" } -wedpr_ffi_macros = { path = "../../ffi_macros/" } +wedpr_ffi_common = "1.1.0" +wedpr_ffi_macros = "1.1.0" wedpr_l_crypto_block_cipher_aes = { path = "../../../crypto/block_cipher/aes", optional = true } wedpr_l_crypto_block_cipher_sm4 = { path = "../../../crypto/block_cipher/sm4", optional = true } wedpr_l_crypto_ecies_secp256k1 = { path = "../../../crypto/ecies/secp256k1", optional = true } @@ -45,7 +45,7 @@ wedpr_l_crypto_signature_sm2 = { path = "../../../crypto/signature/sm2", optiona wedpr_l_crypto_vrf_curve25519 = { path = "../../../crypto/vrf/curve25519", optional = true } wedpr_l_macros = "1.0.0" wedpr_l_protos = { path = "../../../protos" } -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" # This is required to generate C/C++ header files. [build-dependencies] cbindgen = "0.9.0" diff --git a/ffi/ffi_c/ffi_c_fisco_bcos/Cargo.toml b/ffi/ffi_c/ffi_c_fisco_bcos/Cargo.toml index 42d4d45..f61d06d 100644 --- a/ffi/ffi_c/ffi_c_fisco_bcos/Cargo.toml +++ b/ffi/ffi_c/ffi_c_fisco_bcos/Cargo.toml @@ -13,8 +13,8 @@ crate-type = [ "cdylib", "staticlib" ] [dependencies] libc = "0.2.60" wedpr_ffi_c_common = "1.0.0" -wedpr_ffi_common = { path = "../../ffi_common/" } -wedpr_ffi_macros = { path = "../../ffi_macros/" } +wedpr_ffi_common = "1.1.0" +wedpr_ffi_macros = "1.1.0" wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" wedpr_third_party_fisco_bcos = { path = "../../../third_party/fisco_bcos/" } diff --git a/ffi/ffi_common/Cargo.toml b/ffi/ffi_common/Cargo.toml index 0ae052c..71edf9e 100644 --- a/ffi/ffi_common/Cargo.toml +++ b/ffi/ffi_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_ffi_common" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -18,8 +18,8 @@ jni = "0.13.0" lazy_static = "1.4.0" libc = "0.2.60" -wedpr_ffi_macros = { git = "https://github.com.cnpmjs.org/WeBankBlockchain/WeDPR-Lab-Crypto.git", branch = "v1.1.0" } -wedpr_l_common_coder_base64 = { path = "../../common/coder/base64", optional = true } -wedpr_l_common_coder_hex = { path = "../../common/coder/hex", optional = true } +wedpr_ffi_macros = "1.1.0" +wedpr_l_common_coder_base64 = { version = "1.1.0", optional = true } +wedpr_l_common_coder_hex = { version = "1.1.0", optional = true } wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../common/utils" } +wedpr_l_utils = "1.1.0" diff --git a/ffi/ffi_java/ffi_java_crypto/Cargo.toml b/ffi/ffi_java/ffi_java_crypto/Cargo.toml index 8f78bb2..412998e 100644 --- a/ffi/ffi_java/ffi_java_crypto/Cargo.toml +++ b/ffi/ffi_java/ffi_java_crypto/Cargo.toml @@ -29,24 +29,24 @@ crate-type = [ "cdylib", "staticlib" ] [dependencies] jni = "0.13.0" lazy_static = "1.4.0" -wedpr_ffi_common_base64 = { package = "wedpr_ffi_common", version = "1.0.0", features = [ "wedpr_f_base64" ], default-features = false, optional = true } -wedpr_ffi_common_hex = { package = "wedpr_ffi_common", version = "1.0.0", features = [ "wedpr_f_hex" ], default-features = false, optional = true } -wedpr_ffi_macros = "1.0.0" -wedpr_l_crypto_block_cipher_aes = { path = "../../../crypto/block_cipher/aes", optional = true } -wedpr_l_crypto_block_cipher_sm4 = { path = "../../../crypto/block_cipher/sm4", optional = true } +wedpr_ffi_common_base64 = { package = "wedpr_ffi_common", version = "1.1.0", features = [ "wedpr_f_base64" ], default-features = false, optional = true } +wedpr_ffi_common_hex = { package = "wedpr_ffi_common", version = "1.1.0", features = [ "wedpr_f_hex" ], default-features = false, optional = true } +wedpr_ffi_macros = "1.1.0" +wedpr_l_crypto_block_cipher_aes = { version = "1.0.0", optional = true } +wedpr_l_crypto_block_cipher_sm4 = { version = "1.0.0", optional = true } -wedpr_l_crypto_ecies_secp256k1 = { path = "../../../crypto/ecies/secp256k1", optional = true } -wedpr_l_crypto_hash_blake2b = { path = "../../../crypto/hash/blake2b", optional = true } -wedpr_l_crypto_hash_keccak256 = { path = "../../../crypto/hash/keccak256", optional = true } -wedpr_l_crypto_hash_ripemd160 = { path = "../../../crypto/hash/ripemd160", optional = true } -wedpr_l_crypto_hash_sha3 = { path = "../../../crypto/hash/sha3", optional = true } -wedpr_l_crypto_hash_sm3 = { path = "../../../crypto/hash/sm3", optional = true } +wedpr_l_crypto_ecies_secp256k1 = { version = "1.1.0", optional = true } +wedpr_l_crypto_hash_blake2b = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_keccak256 = { version = "1.1.0", optional = true } +wedpr_l_crypto_hash_ripemd160 = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_sha3 = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_sm3 = { version = "1.0.0", optional = true } wedpr_l_crypto_signature_ed25519 = { path = "../../../crypto/signature/ed25519", optional = true } wedpr_l_crypto_signature_secp256k1 = { path = "../../../crypto/signature/secp256k1", optional = true } wedpr_l_crypto_signature_sm2 = { path = "../../../crypto/signature/sm2", optional = true } wedpr_l_crypto_vrf_curve25519 = { path = "../../../crypto/vrf/curve25519", optional = true } wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" [target.'cfg(target_os = "android")'.dependencies] jni = { version = "0.13.1", default-features = false } diff --git a/ffi/ffi_java/ffi_java_crypto_binary/Cargo.toml b/ffi/ffi_java/ffi_java_crypto_binary/Cargo.toml index 2d1931b..bbd04e4 100644 --- a/ffi/ffi_java/ffi_java_crypto_binary/Cargo.toml +++ b/ffi/ffi_java/ffi_java_crypto_binary/Cargo.toml @@ -27,8 +27,8 @@ crate-type = [ "cdylib", "staticlib" ] [dependencies] jni = "0.13.0" lazy_static = "1.4.0" -wedpr_ffi_common = { path = "../../ffi_common" } -wedpr_ffi_macros = { path = "../../ffi_macros" } +wedpr_ffi_common = "1.1.0" +wedpr_ffi_macros = "1.1.0" wedpr_l_crypto_block_cipher_aes = { path = "../../../crypto/block_cipher/aes", optional = true } wedpr_l_crypto_block_cipher_sm4 = { path = "../../../crypto/block_cipher/sm4", optional = true } @@ -43,7 +43,7 @@ wedpr_l_crypto_signature_secp256k1 = { path = "../../../crypto/signature/secp256 wedpr_l_crypto_signature_sm2 = { path = "../../../crypto/signature/sm2", optional = true } wedpr_l_crypto_vrf_curve25519 = { path = "../../../crypto/vrf/curve25519", optional = true } wedpr_l_macros = "1.0.0" -wedpr_l_utils = { path = "../../../common/utils" } +wedpr_l_utils = "1.1.0" [target.'cfg(target_os = "android")'.dependencies] jni = { version = "0.13.1", default-features = false } diff --git a/ffi/ffi_macros/Cargo.toml b/ffi/ffi_macros/Cargo.toml index 04280a8..902c432 100644 --- a/ffi/ffi_macros/Cargo.toml +++ b/ffi/ffi_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_ffi_macros" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" diff --git a/protos/Cargo.toml b/protos/Cargo.toml index 5b45528..b7b456b 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_protos" -version = "1.0.0" +version = "1.1.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" diff --git a/third_party/fisco_bcos/Cargo.toml b/third_party/fisco_bcos/Cargo.toml index f6cadca..e71d1b6 100644 --- a/third_party/fisco_bcos/Cargo.toml +++ b/third_party/fisco_bcos/Cargo.toml @@ -13,7 +13,7 @@ etcommon-bigint = "0.2" sputnikvm = "0.10.1" sputnikvm-precompiled-bn128 = "0.10.1" -wedpr_l_utils = { path = "../../common/utils" } +wedpr_l_utils = "1.1.0" [dev-dependencies] hex = "0.4"