From: Isis Lovecruft Date: Fri, 15 Jun 2018 21:44:22 +0000 (+0000) Subject: rust: Expose rand module from crypto crate. X-Git-Tag: tor-0.3.4.3-alpha~24^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac5b1428ea9d0a4c59e9c9c11a88019ebae6abf0;p=thirdparty%2Ftor.git rust: Expose rand module from crypto crate. --- 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;