mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-05 20:30:57 +00:00
Feature gate rand on nightly.
We can't use features on non-nightly channels.
This commit is contained in:
parent
4bdbf89eeb
commit
4eaa1321ee
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![feature(rand)]
|
#![cfg_attr(feature = "nightly", feature(rand))]
|
||||||
#![allow(unused_features)]
|
#![allow(unused_features)]
|
||||||
#![cfg_attr(feature = "bench", feature(test))]
|
#![cfg_attr(feature = "bench", feature(test))]
|
||||||
#![deny(missing_docs)] // refuse to compile if documentation is missing
|
#![deny(missing_docs)] // refuse to compile if documentation is missing
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue