diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 21:43:14 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 21:43:17 -0800 |
commit | eb6fb8e5fe1efb3fbb927d13075cf5a1b33aa83e (patch) | |
tree | c5f4daeed7e661bdfe41c432d0e8921d3f146489 /rust/src/database_models.rs | |
parent | ba1bde18d780db53ac3562a3be9ae62bb5729db6 (diff) | |
download | fatcat-eb6fb8e5fe1efb3fbb927d13075cf5a1b33aa83e.tar.gz fatcat-eb6fb8e5fe1efb3fbb927d13075cf5a1b33aa83e.zip |
rust 2018 edition!
Only the basics to get things to compile/test again in this commit.
Diffstat (limited to 'rust/src/database_models.rs')
-rw-r--r-- | rust/src/database_models.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/database_models.rs b/rust/src/database_models.rs index 59953f6b..ad9aaf29 100644 --- a/rust/src/database_models.rs +++ b/rust/src/database_models.rs @@ -1,9 +1,9 @@ #![allow(proc_macro_derive_resolution_fallback)] -use api_helpers::uuid2fcid; +use crate::api_helpers::uuid2fcid; use chrono; -use database_schema::*; -use errors::*; +use crate::database_schema::*; +use crate::errors::*; use fatcat_api_spec::models::{ChangelogEntry, Editgroup, Editor, EntityEdit}; use serde_json; use uuid::Uuid; |