diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-06-15 21:44:22 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-06-15 21:44:22 +0000 |
commit | ac5b1428ea9d0a4c59e9c9c11a88019ebae6abf0 (patch) | |
tree | 1a929b831f92c3e584ba13e637747795466152b1 /src/rust/crypto/lib.rs | |
parent | e22822e4ae75dc59c7242d84bc306476fbd92a3b (diff) | |
download | tor-ac5b1428ea9d0a4c59e9c9c11a88019ebae6abf0.tar.gz tor-ac5b1428ea9d0a4c59e9c9c11a88019ebae6abf0.zip |
rust: Expose rand module from crypto crate.
Diffstat (limited to 'src/rust/crypto/lib.rs')
-rw-r--r-- | src/rust/crypto/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rust/crypto/lib.rs b/src/rust/crypto/lib.rs index e7e3b22e03..b349664dbe 100644 --- a/src/rust/crypto/lib.rs +++ b/src/rust/crypto/lib.rs @@ -34,4 +34,5 @@ extern crate libc; extern crate external; pub mod digests; // Unfortunately named "digests" plural to avoid name conflict with the digest crate +pub mod rand; |