소스 검색

rust: Export digests subcrate from our crypto crate.

Isis Lovecruft 7 년 전
부모
커밋
4c21d41407
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/rust/crypto/lib.rs

+ 2 - 1
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
+