diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-05-15 02:04:40 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-05-15 18:05:52 +0000 |
commit | 4c21d414071d50452b8bf914fbef00c5c2d37c31 (patch) | |
tree | fd06fcc53149c5708766f698cd955a871f3a76de /src/rust/crypto | |
parent | aab626405c312a33d521c9ca3729552fd9ccca2e (diff) | |
download | tor-4c21d414071d50452b8bf914fbef00c5c2d37c31.tar.gz tor-4c21d414071d50452b8bf914fbef00c5c2d37c31.zip |
rust: Export digests subcrate from our crypto crate.
Diffstat (limited to 'src/rust/crypto')
-rw-r--r-- | src/rust/crypto/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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 + |