-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cc7d40
commit f112af8
Showing
5 changed files
with
71 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
pkg/julia/manifest/testdata/julia_v1.0_format/Manifest.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[[Foo]] | ||
deps = ["Bar", "Baz", "Qux"] | ||
uuid = "767738be-2f1f-45a9-b806-0234f3164144" | ||
git-tree-sha1 = "7c626031568a5e432112a74009c3763f9b851e3e" | ||
path = "deps/Foo1" | ||
|
||
[[Foo]] | ||
deps = ["Qux"] | ||
uuid = "6f418443-bd2e-4783-b551-cdbac608adf2" | ||
path = "deps/Foo2.jl" | ||
|
||
[[Bar]] | ||
uuid = "2a550a13-6bab-4a91-a4ee-dff34d6b99d0" | ||
path = "deps/Bar" | ||
[Bar.deps] | ||
Baz = "6801f525-dc68-44e8-a4e8-cabd286279e7" | ||
Foo = "6f418443-bd2e-4783-b551-cdbac608adf2" | ||
|
||
[[Baz]] | ||
uuid = "6801f525-dc68-44e8-a4e8-cabd286279e7" | ||
git-tree-sha1 = "efc7e24c53d6a328011975294a2c75fed2f9800a" | ||
[Baz.deps] | ||
Foo = "6f418443-bd2e-4783-b551-cdbac608adf2" | ||
Qux = "b5ec9b9c-e354-47fd-b367-a348bdc8f909" | ||
|
||
[[Qux]] | ||
uuid = "b5ec9b9c-e354-47fd-b367-a348bdc8f909" | ||
path = "deps/Qux.jl" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name = "TestProject" | ||
uuid = "84c38c17-0c6f-4d12-a694-d20b69c16777" | ||
|
||
[deps] | ||
Foo = "767738be-2f1f-45a9-b806-0234f3164144" | ||
Bar = "2a550a13-6bab-4a91-a4ee-dff34d6b99d0" |