Skip to content

Commit

Permalink
Bump ec-utils version (#2104)
Browse files Browse the repository at this point in the history
  • Loading branch information
davxy authored Nov 1, 2023
1 parent 495d24d commit b53a93a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion substrate/primitives/crypto/ec-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sp-crypto-ec-utils"
version = "0.4.0"
version = "0.4.1"
authors.workspace = true
description = "Host functions for common Arkworks elliptic curve operations"
edition.workspace = true
Expand Down
12 changes: 6 additions & 6 deletions substrate/primitives/crypto/ec-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//! Elliptic curves which are mostly compatible with *Arkworks* library
//! mostly useful in non-native contexts.
//! This crate offers elliptic curves types which are compatible with the
//! [Arkworks](https://github.com/arkworks-rs) library functionalities.
//!
//! The definitions make use of host functions to offload the non-native
//! computational environment from the some of the most computationally
//! expensive operations by internally leveraging the
//! The implementation has been primarily designed to be used in slow hosted
//! targets (e.g. wasm32) and offloads the most computationally expensive
//! operations to the host by leveraging the
//! [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
//! of the types in the original Arkworks library. This design choice aims to make
Expand Down

0 comments on commit b53a93a

Please sign in to comment.