File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,16 @@ appveyor = { repository = "mgeisler/version-sync" }
21
21
codecov = { repository = " mgeisler/version-sync" }
22
22
23
23
[dependencies ]
24
- pulldown-cmark = { version = " 0.4" , default-features = false }
24
+ # This crate is compatible with Rust 2018, i.e., Rustc version 1.31.0.
25
+ # Version requirements of dependencies can be bumped as long as the
26
+ # dependencies compile with that compiler version. Some versions
27
+ # requirements below an upper limit to indicate when the dependency
28
+ # stops compiling with a Rust 2018 compatible compiler.
29
+ pulldown-cmark = { version = " 0.4, <0.5" , default-features = false }
25
30
semver-parser = " 0.9"
26
31
syn = { version = " 1.0" , features = [" full" ] }
27
32
proc-macro2 = { version = " 1.0" , features = [" span-locations" ] }
28
33
toml = " 0.5"
29
- url = " 1.0"
34
+ url = " 1.0, <2.0 "
30
35
itertools = " 0.8"
31
36
regex = " 1.1"
You can’t perform that action at this time.
0 commit comments