mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-08-31 23:14:48 +00:00
Migrate to rust 2018 edition
This commit is contained in:
parent
2fde4e6933
commit
94810c106a
25 changed files with 105 additions and 136 deletions
|
@ -63,14 +63,14 @@ impl Cipher {
|
|||
|
||||
use diesel;
|
||||
use diesel::prelude::*;
|
||||
use db::DbConn;
|
||||
use db::schema::*;
|
||||
use crate::db::DbConn;
|
||||
use crate::db::schema::*;
|
||||
|
||||
/// Database methods
|
||||
impl Cipher {
|
||||
pub fn to_json(&self, host: &str, user_uuid: &str, conn: &DbConn) -> Value {
|
||||
use serde_json;
|
||||
use util::format_date;
|
||||
use crate::util::format_date;
|
||||
use super::Attachment;
|
||||
|
||||
let attachments = Attachment::find_by_cipher(&self.uuid, conn);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue