File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,9 @@ matrix:
36
36
- cargo doc --no-deps
37
37
- (cd src/doc && mdbook build --dest-dir ../../target/doc)
38
38
# Make sure building cargo works with minimum dependency versions.
39
- - ./target/debug/cargo update -Z minimal-versions
39
+ # Use a custom fork of the registry index for now because the main one
40
+ # is missing "links" entries.
41
+ - CARGO_REGISTRY_INDEX=https://github.com/klausi/crates.io-index cargo update -Z minimal-versions
40
42
- cargo build
41
43
42
44
exclude :
Original file line number Diff line number Diff line change @@ -20,24 +20,24 @@ path = "src/cargo/lib.rs"
20
20
atty = " 0.2"
21
21
crates-io = { path = " src/crates-io" , version = " 0.16" }
22
22
crossbeam = " 0.3"
23
- crypto-hash = " 0.3"
24
- curl = " 0.4.9 "
25
- env_logger = " 0.5"
23
+ crypto-hash = " >= 0.3.1, <0.4.0 "
24
+ curl = " 0.4.12 "
25
+ env_logger = " >= 0.5.4, <0.6.0 "
26
26
failure = " 0.1.1"
27
27
filetime = " 0.2"
28
28
flate2 = " 1.0"
29
29
fs2 = " 0.4"
30
30
git2 = " 0.7.0"
31
- git2-curl = " 0.8"
32
- glob = " 0.2"
31
+ git2-curl = " >= 0.8.1, <0.9.0 "
32
+ glob = " >= 0.2.11, <0.3.0 "
33
33
hex = " 0.3"
34
34
home = " 0.3"
35
35
ignore = " 0.4"
36
36
lazy_static = " 1.0.0"
37
37
jobserver = " 0.1.9"
38
38
lazycell = " 0.6"
39
39
libc = " 0.2"
40
- libgit2-sys = " 0.7"
40
+ libgit2-sys = " >= 0.7.1, <0.8.0 "
41
41
log = " 0.4"
42
42
num_cpus = " 1.0"
43
43
same-file = " 1"
@@ -47,10 +47,10 @@ serde_derive = "1.0"
47
47
serde_ignored = " 0.0.4"
48
48
serde_json = " 1.0"
49
49
shell-escape = " 0.1"
50
- tar = { version = " 0.4" , default-features = false }
50
+ tar = { version = " >= 0.4.9, <0.5.0 " , default-features = false }
51
51
tempfile = " 3.0"
52
52
termcolor = " 0.3"
53
- toml = " 0.4"
53
+ toml = " >= 0.4.2, <0.5.0 "
54
54
url = " 1.1"
55
55
clap = " 2.31.2"
56
56
You can’t perform that action at this time.
0 commit comments