-
Notifications
You must be signed in to change notification settings - Fork 12
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
v0.5 requires rustc v1.21.0 minimum #39
Comments
Hey Kevin... and yet my build with Rust 1.17 is green: https://travis-ci.org/mgeisler/version-sync/jobs/373680042 :-D You're of course right, it fails after a Do you think diff --git a/Cargo.toml b/Cargo.toml
index d6755b2..9a1d1af 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -24,4 +24,5 @@ semver-parser = "0.7"
syn = { version = "0.11", features = ["full"] }
toml = "0.4"
url = "1.5.1"
+unicode-normalization = "=0.1.5"
itertools = "0.7" is a sensible way to handle this? It looks quite hacky to me and I'm not sure how me pinning the dependency like this impacts crates that depend on Thanks for catching this! |
I asked the question on the users forum: https://users.rust-lang.org/t/impact-of-pinning-dependencies/17634 -- I'll see what the consensus is there. |
I think the problem is for libraries there is no lock file, so it's essentially a |
This should help avoid situations like reported in #39 where the minimum rustc requirements change without us noticing.
This should help avoid situations like reported in #39 where the minimum rustc requirements change without us noticing.
This should help avoid situations like reported in #39 where the minimum rustc requirements change without us noticing.
I see the readme says 1.17 is required, but it looks like
unicode-normilization
has been updated to now require 1.21.0 minimumrustc
.To reproduce:
The text was updated successfully, but these errors were encountered: