소스 검색

Re-export the sample and instrument crates.

mitchmindtree 8 년 전
부모
커밋
a51f8ae6c3
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/lib.rs

+ 2 - 2
src/lib.rs

@@ -1,7 +1,7 @@
 #[cfg(feature="wav")] extern crate hound;
-extern crate instrument;
+pub extern crate instrument;
+pub extern crate sample;
 extern crate pitch_calc as pitch;
-extern crate sample;
 extern crate time_calc as time;
 
 pub use map::{Audio, Map, Sample};