-
- Downloads
Update diesel packages to 2.1.0
Diesel 2.1.0 has received several GAT cleanups for workarounds required when rust didn't support them. Hence, several types have become associated types. For users that don't enable the `with-deprecated` feature this is a breaking change because the bridging type alias is then not present.
... | ... | @@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"] |
[dependencies] | ||
async-graphql = { optional = true, version = "5", default-features = false, features = [ "chrono" ] } | ||
diesel = { optional = true, version = "2.0.*", default-features = false } | ||
diesel = { optional = true, version = "2.1", default-features = false } | ||
rand = "0.8" | ||
serde = { version = "1", features = [ "derive" ] } | ||
thiserror = "1" | ||
... | ... |
Please register or sign in to comment