From: Isis Lovecruft Date: Tue, 15 May 2018 02:04:40 +0000 (+0000) Subject: rust: Export digests subcrate from our crypto crate. X-Git-Tag: tor-0.3.4.1-alpha~8^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c21d414071d50452b8bf914fbef00c5c2d37c31;p=thirdparty%2Ftor.git rust: Export digests subcrate from our crypto crate. --- diff --git a/src/rust/crypto/lib.rs b/src/rust/crypto/lib.rs index d0793a8575..e7e3b22e03 100644 --- a/src/rust/crypto/lib.rs +++ b/src/rust/crypto/lib.rs @@ -33,4 +33,5 @@ extern crate libc; // Our local crates. extern crate external; -mod digests; // Unfortunately named "digests" plural to avoid name conflict with the digest crate +pub mod digests; // Unfortunately named "digests" plural to avoid name conflict with the digest crate +