mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Realphabetise extern crates.
This commit is contained in:
parent
f6ec28c077
commit
6fea2e1ea0
1 changed files with 4 additions and 6 deletions
10
src/lib.rs
10
src/lib.rs
|
|
@ -243,17 +243,15 @@
|
|||
#![warn(rust_2018_idioms)]
|
||||
#![deny(missing_docs)] // refuse to compile if documentation is missing
|
||||
|
||||
extern crate clear_on_drop;
|
||||
extern crate curve25519_dalek;
|
||||
extern crate failure;
|
||||
extern crate rand;
|
||||
|
||||
#[cfg(any(feature = "std", test))]
|
||||
#[macro_use]
|
||||
extern crate std;
|
||||
|
||||
extern crate clear_on_drop;
|
||||
extern crate curve25519_dalek;
|
||||
extern crate failure;
|
||||
extern crate rand;
|
||||
extern crate sha2;
|
||||
|
||||
#[cfg(feature = "serde")]
|
||||
extern crate serde;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue