Upgrade bson crate to 0.15.0 (#674)
This commit is contained in:
parent
ddc1488195
commit
02801ee981
3 changed files with 5 additions and 3 deletions
juniper
|
@ -45,6 +45,8 @@ See [#618](https://github.com/graphql-rust/juniper/pull/618).
|
||||||
|
|
||||||
- Improved lookahead visibility for aliased fields (see [#662](https://github.com/graphql-rust/juniper/pull/631))
|
- Improved lookahead visibility for aliased fields (see [#662](https://github.com/graphql-rust/juniper/pull/631))
|
||||||
|
|
||||||
|
- Bumped bson crate's version to 0.15.0 (see [#674](https://github.com/graphql-rust/juniper/pull/674))
|
||||||
|
|
||||||
## Breaking Changes
|
## Breaking Changes
|
||||||
|
|
||||||
- `juniper::graphiql` has moved to `juniper::http::graphiql`
|
- `juniper::graphiql` has moved to `juniper::http::graphiql`
|
||||||
|
|
|
@ -36,7 +36,7 @@ scalar-naivetime = []
|
||||||
[dependencies]
|
[dependencies]
|
||||||
juniper_codegen = { version = "0.14.2", path = "../juniper_codegen" }
|
juniper_codegen = { version = "0.14.2", path = "../juniper_codegen" }
|
||||||
|
|
||||||
bson = { version = "0.14.0", optional = true }
|
bson = { version = "0.15.0", optional = true }
|
||||||
chrono = { version = "0.4.0", optional = true }
|
chrono = { version = "0.4.0", optional = true }
|
||||||
fnv = "1.0.3"
|
fnv = "1.0.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use bson::{oid::ObjectId, UtcDateTime};
|
use bson::{oid::ObjectId, DateTime as UtcDateTime};
|
||||||
use chrono::prelude::*;
|
use chrono::prelude::*;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
|
@ -57,7 +57,7 @@ where
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use crate::{value::DefaultScalarValue, InputValue};
|
use crate::{value::DefaultScalarValue, InputValue};
|
||||||
use bson::{oid::ObjectId, UtcDateTime};
|
use bson::{oid::ObjectId, DateTime as UtcDateTime};
|
||||||
use chrono::prelude::*;
|
use chrono::prelude::*;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Add table
Reference in a new issue