Skip to content

Commit 65b1a83

Browse files
committed
Add toml for new Pkg format
1 parent 72492e8 commit 65b1a83

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

Manifest.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[[Base64]]
2+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
3+
4+
[[Distributed]]
5+
deps = ["LinearAlgebra", "Random", "Serialization", "Sockets"]
6+
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
7+
8+
[[InteractiveUtils]]
9+
deps = ["LinearAlgebra", "Markdown"]
10+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
11+
12+
[[Libdl]]
13+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
14+
15+
[[LinearAlgebra]]
16+
deps = ["Libdl"]
17+
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
18+
19+
[[Logging]]
20+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
21+
22+
[[Markdown]]
23+
deps = ["Base64"]
24+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
25+
26+
[[Random]]
27+
deps = ["Serialization"]
28+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
29+
30+
[[Serialization]]
31+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
32+
33+
[[Sockets]]
34+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
35+
36+
[[SparseArrays]]
37+
deps = ["LinearAlgebra", "Random"]
38+
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
39+
40+
[[Test]]
41+
deps = ["Distributed", "InteractiveUtils", "Logging", "Random"]
42+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

Project.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name = "MATLAB"
2+
uuid = "10e44e05-a98a-55b3-a45b-ba969058deb6"
3+
repo = "https://github.com/JuliaInterop/MATLAB.jl.git"
4+
license = "MIT"
5+
version = "v0.7.0"
6+
7+
[deps]
8+
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
9+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
10+
11+
[extras]
12+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
13+
14+
[targets]
15+
test = ["Test"]

0 commit comments

Comments
 (0)