diff --git a/common/coder/base64/Cargo.toml b/common/coder/base64/Cargo.toml index 98281c5..d86c64c 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,5 +10,5 @@ description = "Library of WeDPR base64." [dependencies] base64 = "0.13.0" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/common/coder/hex/Cargo.toml b/common/coder/hex/Cargo.toml index 72ce8c0..0b319c2 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,5 +10,5 @@ description = "Library of WeDPR hex." [dependencies] hex = "0.4.2" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/common/macros/Cargo.toml b/common/macros/Cargo.toml index 3e2edb3..742721d 100644 --- a/common/macros/Cargo.toml +++ b/common/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_macros" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" diff --git a/common/utils/Cargo.toml b/common/utils/Cargo.toml index 7f5594d..16c9d92 100644 --- a/common/utils/Cargo.toml +++ b/common/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_utils" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" diff --git a/crypto/ecies/secp256k1/Cargo.toml b/crypto/ecies/secp256k1/Cargo.toml index 8db7a99..ccf992c 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,5 +10,5 @@ description = "Library of WeDPR shared ecies." [dependencies] ecies = "0.1.4" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/hash/keccak256/Cargo.toml b/crypto/hash/keccak256/Cargo.toml index 61707a6..be185c7 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,5 +10,5 @@ description = "Library of WeDPR shared Hash Function implement by keccak256." [dependencies] sha3 = "0.8" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/hash/sm3/Cargo.toml b/crypto/hash/sm3/Cargo.toml index cddf47b..b905fbc 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -10,5 +10,5 @@ description = "Library of WeDPR shared Hash Function implement by sm3." [dependencies] wedpr_l_libsm = "0.3.0" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/signature/secp256k1/Cargo.toml b/crypto/signature/secp256k1/Cargo.toml index 2886812..5e4418c 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -12,5 +12,5 @@ description = "Library of WeDPR shared Siganture Function implement by secp256k1 lazy_static = "1.4.0" rand = "0.6" secp256k1 = { version = "0.19.0", features = [ "recovery", "rand" ] } -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/signature/sm2/Cargo.toml b/crypto/signature/sm2/Cargo.toml index 0ffc97c..769d4e1 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 = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" @@ -11,5 +11,5 @@ description = "Library of WeDPR shared Siganture Function implement by sm2." [dependencies] lazy_static = "1.4.0" wedpr_l_libsm = "0.3.1" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/vrf/curve25519/Cargo.toml b/crypto/vrf/curve25519/Cargo.toml index 1a39e60..f86aa7f 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 = "0.0.1" +version = "1.0.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 = "0.0.1" -wedpr_l_crypto_zkp_utils = "0.0.1" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_crypto_hash_keccak256 = "1.0.0" +wedpr_l_crypto_zkp_utils = "1.0.0" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/zkp/discrete_logarithm_proof/Cargo.toml b/crypto/zkp/discrete_logarithm_proof/Cargo.toml index a2998d9..faf7bf6 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 = "0.0.1" +version = "1.0.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 = "0.0.1" -wedpr_l_macros = "0.0.1" -wedpr_l_protos = "0.0.1" -wedpr_l_utils = "0.0.1" +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" diff --git a/crypto/zkp/range_proof/Cargo.toml b/crypto/zkp/range_proof/Cargo.toml index c3adcb0..b975006 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 = "0.0.1" +version = "1.0.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 = "0.0.1" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_crypto_zkp_utils = "1.0.0" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/crypto/zkp/utils/Cargo.toml b/crypto/zkp/utils/Cargo.toml index d26f923..e63e76a 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 = "0.0.1" +version = "1.0.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 = "0.0.1" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_l_crypto_hash_keccak256 = "1.0.0" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/ffi/ffi_c/ffi_c_common/Cargo.toml b/ffi/ffi_c/ffi_c_common/Cargo.toml index 29aaefa..5e91192 100644 --- a/ffi/ffi_c/ffi_c_common/Cargo.toml +++ b/ffi/ffi_c/ffi_c_common/Cargo.toml @@ -1,8 +1,10 @@ [package] name = "wedpr_ffi_c_common" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" +license = "Apache-2.0" +description = "Library of WeDPR ffi c shared common utils." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/ffi/ffi_c/ffi_c_crypto/Cargo.toml b/ffi/ffi_c/ffi_c_crypto/Cargo.toml index b89fd4c..fd88b11 100644 --- a/ffi/ffi_c/ffi_c_crypto/Cargo.toml +++ b/ffi/ffi_c/ffi_c_crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_ffi_c_crypto" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" @@ -24,20 +24,19 @@ crate-type = [ "cdylib", "staticlib" ] lazy_static = "1.4.0" libc = "0.2.60" protobuf = "2.20.0" -wedpr_ffi_c_common = { path = "../ffi_c_common/" } -wedpr_ffi_common_base64 = { package = "wedpr_ffi_common", version = "0.0.1", features = [ "wedpr_f_base64" ], default-features = false, optional = true } -wedpr_ffi_common_hex = { package = "wedpr_ffi_common", version = "0.0.1", features = [ "wedpr_f_hex" ], default-features = false, optional = true } -wedpr_ffi_macros = "0.0.1" -wedpr_l_crypto_vrf_curve25519 = { version = "0.0.1", optional = true } -wedpr_l_crypto_ecies_secp256k1 = { version = "0.0.1", optional = true } -wedpr_l_crypto_hash_keccak256 = { version = "0.0.1", optional = true } -wedpr_l_crypto_hash_sm3 = { version = "0.0.1", optional = true } -#wedpr_l_crypto_signature_secp256k1 = { version = "0.0.1", 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_protos = "0.0.1" -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.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_l_crypto_vrf_curve25519 = { version = "1.0.0", optional = true } +wedpr_l_crypto_ecies_secp256k1 = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_keccak256 = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_sm3 = { version = "1.0.0", optional = true } +wedpr_l_crypto_signature_secp256k1 = { version = "1.0.0", optional = true } +wedpr_l_crypto_signature_sm2 = { version = "1.0.0", optional = true } +wedpr_l_protos = "1.0.0" +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" # This is required to generate C/C++ header files. [build-dependencies] cbindgen = "0.9.0" diff --git a/ffi/ffi_common/Cargo.toml b/ffi/ffi_common/Cargo.toml index db147bc..76ef207 100644 --- a/ffi/ffi_common/Cargo.toml +++ b/ffi/ffi_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_ffi_common" -version = "0.0.1" +version = "1.0.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 = "0.0.1" -wedpr_l_common_coder_base64 = { version = "0.0.1", optional = true } -wedpr_l_common_coder_hex = { version = "0.0.1", optional = true } -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +wedpr_ffi_macros = "1.0.0" +wedpr_l_common_coder_base64 = { version = "1.0.0", optional = true } +wedpr_l_common_coder_hex = { version = "1.0.0", optional = true } +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.0" diff --git a/ffi/ffi_java/ffi_java_crypto/Cargo.toml b/ffi/ffi_java/ffi_java_crypto/Cargo.toml index 50f9fc2..6195f3f 100644 --- a/ffi/ffi_java/ffi_java_crypto/Cargo.toml +++ b/ffi/ffi_java/ffi_java_crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_ffi_java_crypto" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" @@ -23,18 +23,17 @@ crate-type = [ "cdylib", "staticlib" ] [dependencies] jni = "0.13.0" lazy_static = "1.4.0" -wedpr_ffi_common_base64 = { package = "wedpr_ffi_common", version = "0.0.1", features = [ "wedpr_f_base64" ], default-features = false, optional = true } -wedpr_ffi_common_hex = { package = "wedpr_ffi_common", version = "0.0.1", features = [ "wedpr_f_hex" ], default-features = false, optional = true } -wedpr_ffi_macros = "0.0.1" -wedpr_l_crypto_vrf_curve25519 = { version = "0.0.1", optional = true } -wedpr_l_crypto_ecies_secp256k1 = { version = "0.0.1", optional = true } -wedpr_l_crypto_hash_keccak256 = { version = "0.0.1", optional = true } -wedpr_l_crypto_hash_sm3 = { version = "0.0.1", optional = true } -wedpr_l_crypto_signature_secp256k1 = { path = "../../../crypto/signature/secp256k1", optional = true } -#wedpr_l_crypto_signature_secp256k1 = { version = "0.0.1", optional = true } -wedpr_l_crypto_signature_sm2 = {path = "../../../crypto/signature/sm2", optional = true } -wedpr_l_macros = "0.0.1" -wedpr_l_utils = "0.0.1" +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_vrf_curve25519 = { version = "1.0.0", optional = true } +wedpr_l_crypto_ecies_secp256k1 = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_keccak256 = { version = "1.0.0", optional = true } +wedpr_l_crypto_hash_sm3 = { version = "1.0.0", optional = true } +wedpr_l_crypto_signature_secp256k1 = { version = "1.0.0", optional = true } +wedpr_l_crypto_signature_sm2 = { version = "1.0.0", optional = true } +wedpr_l_macros = "1.0.0" +wedpr_l_utils = "1.0.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 9be6f08..04280a8 100644 --- a/ffi/ffi_macros/Cargo.toml +++ b/ffi/ffi_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_ffi_macros" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0" diff --git a/protos/Cargo.toml b/protos/Cargo.toml index 9dc5922..3671aac 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wedpr_l_protos" -version = "0.0.1" +version = "1.0.0" authors = [ "WeDPR " ] edition = "2018" license = "Apache-2.0"