aboutsummaryrefslogtreecommitdiff
path: root/src/rust/rand/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rust/rand/lib.rs')
-rw-r--r--src/rust/rand/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/rust/rand/lib.rs b/src/rust/rand/lib.rs
new file mode 100644
index 0000000000..6b3058ad58
--- /dev/null
+++ b/src/rust/rand/lib.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;