aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/tests/duplicated_package.lock
blob: 22acce4257ca2995c711437302b441cc3c922c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[root]
name = "servo"
version = "0.0.1"

[[package]]
name = "test"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "test"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "test2"
version = "0.1.0"
source = "git+https://github.com/user/test2#c54edsf"
dependencies = [
 "test 0.4.9",
]

[[package]]
name = "test3"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "test 0.5.1",
]

[[package]]
name = "test3"
version = "0.5.1"
source = "git+https://github.com/user/test3#c54edsf"

[[package]]
name = "test4"
version = "0.1.0"
source = "git+https://github.com/user/test4#c54edsf"
dependencies = [
 "test3 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "test5"
version = "0.1.0"
source = "git+https://github.com/"
dependencies = [
 "test3 0.5.1 (git+https://github.com/user/test3)",
]