Update crates to latest version.

This commit is contained in:
Paul Makles
2020-04-09 15:57:51 +01:00
parent e6ed46af82
commit 28fa2aad6c
13 changed files with 664 additions and 898 deletions

View File

@@ -1,4 +1,4 @@
use bson::{bson, doc};
use bson::doc;
use serde::{Deserialize, Serialize};
use super::get_collection;

View File

@@ -1,6 +1,6 @@
use super::get_collection;
use bson::{bson, doc};
use bson::doc;
use mongodb::options::FindOneOptions;
/*pub struct MutualGuild {

View File

@@ -4,7 +4,7 @@ use crate::guards::auth::UserRef;
use crate::guards::channel::ChannelRef;
use crate::guards::guild::GuildRef;
use bson::{bson, doc};
use bson::doc;
use num_enum::TryFromPrimitive;
#[derive(Debug, PartialEq, Eq, TryFromPrimitive)]