From: Isis Lovecruft Date: Tue, 15 May 2018 02:05:14 +0000 (+0000) Subject: rust: Export crypto_rand::* functions from our external crate. X-Git-Tag: tor-0.3.4.1-alpha~7^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9c877a6e529b6c16cee2fa6883c252f140a9486;p=thirdparty%2Ftor.git rust: Export crypto_rand::* functions from our external crate. --- diff --git a/src/rust/external/lib.rs b/src/rust/external/lib.rs index ffd38ac5da..b72a4f6e4c 100644 --- a/src/rust/external/lib.rs +++ b/src/rust/external/lib.rs @@ -15,4 +15,5 @@ pub mod crypto_digest; mod crypto_rand; mod external; +pub use crypto_rand::*; pub use external::*;