Skip to content

Commit

Permalink
Fix no_std compile for core and release core v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sorpaas committed Jun 18, 2021
1 parent 98d7025 commit 3159fdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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.0"
version = "0.2.1"
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,7 +5,8 @@ use crate::{
};
use alloc::{
alloc::{alloc, Layout},
vec,
vec, vec::Vec,
boxed::Box,
};
use subtle::Choice;

Expand Down

0 comments on commit 3159fdb

Please sign in to comment.