Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upConflicting implementation error after updating to 0.16 from 0.15 #1156
Comments
This comment has been minimized.
|
|
This comment has been minimized.
DmitriK
commented
Sep 7, 2017
|
Removed |
DmitriK
closed this
Sep 7, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DmitriK commentedSep 7, 2017
Setup
Versions
Feature Flags
Problem Description
My application builds fine when using diesel 0.15.2 and diesel_codegen 0.15.0. After running
cargo update, both were updated to 0.16.0. When I try to build, I get the following error:OK, do what the compiler says, and add
#![recursion_limit="128"]to the crate. Build now fails with:Based on older bugs, I tried to add the 'large-tables' feature to diesel, but it does not fix it. Reverting to 0.15* fixes it. In the meantime, I'll just make do by holding the version back, but it doesn't seem right that an update resulted in build failures.
Steps to reproduce
Module triggering error:
Schema:
Checklist