-
Notifications
You must be signed in to change notification settings - Fork 434
Can't use uuid #378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Juniper only supports Diesel supports uuid 0.7 with the
|
Ooooh, I see. Thanks! |
Worked for me! #...
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# ...
diesel = { version = "1.4.0", features = ["postgres", "r2d2", "uuidv07", "chrono"] }
juniper = "0.14.2"
# ...
uuid = { version = "0.7", features = ["serde", "v4"] } |
I can't get my project to compile with uuid.
The output I experience is:
What am I missing? Is this because I need to use uuid v0.7? If so that would be a bummer as diesel does not support v0.7.
The text was updated successfully, but these errors were encountered: