File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 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" }
2121codecov = { repository = " mgeisler/version-sync" }
2222
2323[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 }
2530semver-parser = " 0.9"
2631syn = { version = " 1.0" , features = [" full" ] }
2732proc-macro2 = { version = " 1.0" , features = [" span-locations" ] }
2833toml = " 0.5"
29- url = " 1.0"
34+ url = " 1.0, <2.0 "
3035itertools = " 0.8"
3136regex = " 1.1"
You can’t perform that action at this time.
0 commit comments