diff options
Diffstat (limited to 'src/rust/crypto/rand/mod.rs')
-rw-r--r-- | src/rust/crypto/rand/mod.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/rust/crypto/rand/mod.rs b/src/rust/crypto/rand/mod.rs new file mode 100644 index 0000000000..6b3058ad58 --- /dev/null +++ b/src/rust/crypto/rand/mod.rs @@ -0,0 +1,16 @@ +// Copyright (c) 2018, The Tor Project, Inc. +// Copyright (c) 2018, isis agora lovecruft +// See LICENSE for licensing information + +// External dependencies +#[cfg(test)] +extern crate rand; +extern crate rand_core; + +// Internal dependencies +extern crate external; +#[cfg(not(test))] +#[macro_use] +extern crate tor_log; + +pub mod rng; |