mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
The sha2 dependency is only for tests.
This commit is contained in:
parent
a6e74ba608
commit
0e535a9318
1 changed files with 3 additions and 1 deletions
|
|
@ -112,7 +112,6 @@
|
|||
|
||||
#[macro_use]
|
||||
extern crate arrayref;
|
||||
extern crate sha2;
|
||||
extern crate curve25519_dalek;
|
||||
extern crate generic_array;
|
||||
extern crate digest;
|
||||
|
|
@ -124,6 +123,9 @@ extern crate rand;
|
|||
#[macro_use]
|
||||
extern crate std;
|
||||
|
||||
#[cfg(test)]
|
||||
extern crate sha2;
|
||||
|
||||
#[cfg(test)]
|
||||
extern crate rustc_serialize;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue