aboutsummaryrefslogtreecommitdiff
path: root/src/rust/external/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rust/external/lib.rs')
-rw-r--r--src/rust/external/lib.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/rust/external/lib.rs b/src/rust/external/lib.rs
index 0af0d6452d..b72a4f6e4c 100644
--- a/src/rust/external/lib.rs
+++ b/src/rust/external/lib.rs
@@ -1,4 +1,4 @@
-//! Copyright (c) 2016-2017, The Tor Project, Inc. */
+//! Copyright (c) 2016-2018, The Tor Project, Inc. */
//! See LICENSE for licensing information */
//! Interface for external calls to tor C ABI
@@ -9,6 +9,11 @@
extern crate libc;
+extern crate smartlist;
+
+pub mod crypto_digest;
+mod crypto_rand;
mod external;
+pub use crypto_rand::*;
pub use external::*;