Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
Fix styling in core after 0.2.1 release (paritytech#69)
Browse files Browse the repository at this point in the history
* Fix styling

* Run cargo fmt

* Bump core version to 0.2.2-dev

* More version bumps
  • Loading branch information
sorpaas authored and trevor-crypto committed May 31, 2022
1 parent 995c573 commit f73f0da
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "libsecp256k1"
description = "Pure Rust secp256k1 implementation."
license = "Apache-2.0"
version = "0.5.0"
version = "0.5.1-dev"
authors = ["Wei Tang <hi@that.world>"]
repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]
edition = "2018"

[dependencies]
libsecp256k1-core = { version = "0.2.0", path = "core", default-features = false }
libsecp256k1-core = { version = "0.2.2-dev", path = "core", default-features = false }
arrayref = "0.3"
rand = { version = "0.8", default-features = false }
digest = "0.9"
Expand All @@ -26,8 +26,8 @@ serde_json = "1.0"
hex-literal = "0.3.3"

[build-dependencies]
libsecp256k1-gen-ecmult = { version = "0.2.0", path = "gen/ecmult" }
libsecp256k1-gen-genmult = { version = "0.2.0", path = "gen/genmult" }
libsecp256k1-gen-ecmult = { version = "0.2.1-dev", path = "gen/ecmult" }
libsecp256k1-gen-genmult = { version = "0.2.1-dev", path = "gen/genmult" }

[features]
default = ["std", "hmac", "static-context"]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "libsecp256k1-core"
description = "Core functions for pure Rust secp256k1 implementation."
license = "Apache-2.0"
version = "0.2.1"
version = "0.2.2-dev"
authors = ["Wei Tang <hi@that.world>"]
repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]
Expand Down
3 changes: 2 additions & 1 deletion core/src/ecmult.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ use crate::{
};
use alloc::{
alloc::{alloc, Layout},
vec, vec::Vec,
boxed::Box,
vec,
vec::Vec,
};
use subtle::Choice;

Expand Down
4 changes: 2 additions & 2 deletions gen/ecmult/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name = "libsecp256k1-gen-ecmult"
description = "Generator function of const_gen for libsecp256k1."
license = "Apache-2.0"
version = "0.2.0"
version = "0.2.1-dev"
authors = ["Wei Tang <hi@that.world>"]
edition = "2018"
repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]

[dependencies]
libsecp256k1-core = { version = "0.2.0", path = "../../core" }
libsecp256k1-core = { version = "0.2.2-dev", path = "../../core" }
4 changes: 2 additions & 2 deletions gen/genmult/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name = "libsecp256k1-gen-genmult"
description = "Generator function of const for libsecp256k1."
license = "Apache-2.0"
version = "0.2.0"
version = "0.2.1-dev"
authors = ["Wei Tang <hi@that.world>"]
edition = "2018"
repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]

[dependencies]
libsecp256k1-core = { version = "0.2.0", path = "../../core" }
libsecp256k1-core = { version = "0.2.2-dev", path = "../../core" }

0 comments on commit f73f0da

Please sign in to comment.