diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 23:18:32 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 23:20:53 -0800 |
commit | ba7d6a842cb4d61357b588fb2d3ec552c654ae64 (patch) | |
tree | 41eb8c465cd1ad0a9f70e18f49905adf7e5c3b40 /rust/tests/test_fcid.rs | |
parent | eb6fb8e5fe1efb3fbb927d13075cf5a1b33aa83e (diff) | |
download | fatcat-ba7d6a842cb4d61357b588fb2d3ec552c654ae64.tar.gz fatcat-ba7d6a842cb4d61357b588fb2d3ec552c654ae64.zip |
huge refactor of rust modules/files
Taking advantage of new Rust 2018 crate/module path changes, and
re-organizing things. Somewhat optimistic this could help with partial
rebuild speed also.
Diffstat (limited to 'rust/tests/test_fcid.rs')
-rw-r--r-- | rust/tests/test_fcid.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/tests/test_fcid.rs b/rust/tests/test_fcid.rs index 4feaef5d..aac27129 100644 --- a/rust/tests/test_fcid.rs +++ b/rust/tests/test_fcid.rs @@ -1,7 +1,7 @@ extern crate fatcat; extern crate uuid; -use fatcat::api_helpers::{fcid2uuid, uuid2fcid}; +use fatcat::identifiers::{fcid2uuid, uuid2fcid}; use uuid::Uuid; #[test] |