diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-05-15 02:05:14 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-05-15 18:03:18 +0000 |
commit | d9c877a6e529b6c16cee2fa6883c252f140a9486 (patch) | |
tree | 700b246252e0857a43f66bcfb239f6138908a5a2 /src/rust/external | |
parent | aab626405c312a33d521c9ca3729552fd9ccca2e (diff) | |
download | tor-d9c877a6e529b6c16cee2fa6883c252f140a9486.tar.gz tor-d9c877a6e529b6c16cee2fa6883c252f140a9486.zip |
rust: Export crypto_rand::* functions from our external crate.
Diffstat (limited to 'src/rust/external')
-rw-r--r-- | src/rust/external/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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::*; |