Was exploring the mongodb driver in rust with juniper, i was trying to retrieve the _id of the mongodb with ObjectId, found out that the traits in this juniper crate were implemented for the bson of version 2.4 and there in mongodb it's 2.7 that we are allowed to use, so to keep juniper compatible with the latest version of mongodb, juniper's bson crate version must be updated.
Was exploring the mongodb driver in rust with juniper, i was trying to retrieve the _id of the mongodb with
ObjectId
, found out that the traits in this juniper crate were implemented for the bson of version 2.4 and there in mongodb it's 2.7 that we are allowed to use, so to keep juniper compatible with the latest version of mongodb, juniper's bson crate version must be updated.