Skip to content

Commit

Permalink
Cleanup crate attributes and default features
Browse files Browse the repository at this point in the history
  • Loading branch information
cargodog committed Dec 14, 2020
1 parent 4c7099a commit 4663629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ polynomials = "0.2"
[dependencies.curve25519-dalek]
default-features = false
version = "3.0"
features = ["nightly", "serde", "alloc"]
features = ["serde", "alloc"]

[dependencies.blake2]
default-features = false
Expand Down
7 changes: 1 addition & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
//! A light-weight and performant implementation of the Arcturus zero-knowledge proof system
//! [[link](https://eprint.iacr.org/2020/312)].
#![no_std]
#![feature(test)]
#![cfg_attr(not(feature = "std"), no_std)]

//-----------------------------------------------------------------------------
// External dependencies:
Expand All @@ -15,10 +14,6 @@ extern crate polynomials;
#[macro_use]
extern crate alloc;

#[cfg(feature = "std")]
#[macro_use]
extern crate std;

//-----------------------------------------------------------------------------
// Public modules
//-----------------------------------------------------------------------------
Expand Down

0 comments on commit 4663629

Please sign in to comment.