Skip to content

Commit

Permalink
more no_std fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alxiong committed Jul 27, 2022
1 parent 959f229 commit 619db69
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ digest = { version = "0.10.1", default-features = false }
espresso-systems-common = { git = "https://github.com/espressosystems/espresso-systems-common", tag = "0.1.1" }

[dev-dependencies]
rand_chacha = "^0.3"
bincode = "1.0"
quickcheck = "1.0.0"
criterion = "0.3.1"
Expand Down
1 change: 1 addition & 0 deletions rescue/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
// along with the Jellyfish library. If not, see <https://mit-license.org/>.

#![deny(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
//! This module implements Rescue hash function over the following fields
//! - bls12_377 base field
//! - ed_on_bls12_377 base field
Expand Down
2 changes: 1 addition & 1 deletion utilities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ark-ff = { version = "0.3.0", default-features = false }
ark-ec = { version = "0.3.0", default-features = false }
ark-serialize = { version = "0.3.0", default-features = false }

serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
anyhow = { version = "^1.0", default-features = false }
displaydoc = { version = "0.2.3", default-features = false }

Expand Down

0 comments on commit 619db69

Please sign in to comment.