-
Notifications
You must be signed in to change notification settings - Fork 24
Update dependencies #140
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
base: master
Are you sure you want to change the base?
Update dependencies #140
Conversation
Cargo.toml
Outdated
grammer = "0.0.1" | ||
proc-macro2 = "0.4.30" | ||
proc-quote = "0.2.2" | ||
grammer = "0.0.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't publish grammer
yet, note the [patch.'crates-io']
section at the bottom.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
proc-macro2 = "0.4.30" | ||
proc-quote = "0.2.2" | ||
proc-macro2 = "1.0.6" | ||
proc-quote = "0.3.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These versions are not compatible, you can see it in the Travis CI build log:
Compiling proc-macro2 v0.4.30
Compiling proc-macro2 v1.0.6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know why -- proc-quote 0.3 depends on proc-macro2 ^1.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you try to build this locally, Cargo.lock
should tell you where the two versions come from.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, cargo tree
-p proc-macro2 -i
should show exactly where it comes from.
Oops, I forgot about this, just re-triggered checks, curious if the problem is gone now or if you have to rebase. |
No description provided.