Bump ec-utils version (#2104)

This commit is contained in:
Davide Galassi
2023-11-01 09:15:19 +01:00
committed by GitHub
parent 495d24d730
commit b53a93a676
3 changed files with 8 additions and 8 deletions
Generated
+1 -1
View File
@@ -17085,7 +17085,7 @@ dependencies = [
[[package]] [[package]]
name = "sp-crypto-ec-utils" name = "sp-crypto-ec-utils"
version = "0.4.0" version = "0.4.1"
dependencies = [ dependencies = [
"ark-bls12-377", "ark-bls12-377",
"ark-bls12-377-ext", "ark-bls12-377-ext",
@@ -1,6 +1,6 @@
[package] [package]
name = "sp-crypto-ec-utils" name = "sp-crypto-ec-utils"
version = "0.4.0" version = "0.4.1"
authors.workspace = true authors.workspace = true
description = "Host functions for common Arkworks elliptic curve operations" description = "Host functions for common Arkworks elliptic curve operations"
edition.workspace = true edition.workspace = true
@@ -15,14 +15,14 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
//! Elliptic curves which are mostly compatible with *Arkworks* library //! This crate offers elliptic curves types which are compatible with the
//! mostly useful in non-native contexts. //! [Arkworks](https://github.com/arkworks-rs) library functionalities.
//! //!
//! The definitions make use of host functions to offload the non-native //! The implementation has been primarily designed to be used in slow hosted
//! computational environment from the some of the most computationally //! targets (e.g. wasm32) and offloads the most computationally expensive
//! expensive operations by internally leveraging the //! operations to the host by leveraging the
//! [arkworks-extensions](https://github.com/paritytech/arkworks-extensions) //! [arkworks-extensions](https://github.com/paritytech/arkworks-extensions)
//! library. //! library and Substrate's host functions.
//! //!
//! The exported types are organized and named in a way that mirrors the structure //! The exported types are organized and named in a way that mirrors the structure
//! of the types in the original Arkworks library. This design choice aims to make //! of the types in the original Arkworks library. This design choice aims to make