Skip to content

Commit aea28fd

Browse files
committed
project and manifest
1 parent 41d91eb commit aea28fd

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

Manifest.toml

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
[[Base64]]
2+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
3+
4+
[[Compat]]
5+
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"]
6+
git-tree-sha1 = "ff2595695fc4f14427358ce2593f867085c45dcb"
7+
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
8+
version = "1.2.0"
9+
10+
[[Dates]]
11+
deps = ["Printf"]
12+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
13+
14+
[[DelimitedFiles]]
15+
deps = ["Mmap"]
16+
uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab"
17+
18+
[[Distributed]]
19+
deps = ["LinearAlgebra", "Random", "Serialization", "Sockets"]
20+
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
21+
22+
[[InteractiveUtils]]
23+
deps = ["LinearAlgebra", "Markdown"]
24+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
25+
26+
[[LibGit2]]
27+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
28+
29+
[[Libdl]]
30+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
31+
32+
[[LinearAlgebra]]
33+
deps = ["Libdl"]
34+
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
35+
36+
[[Logging]]
37+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
38+
39+
[[MacroTools]]
40+
deps = ["Compat"]
41+
git-tree-sha1 = "c443e1c8d58a4e9f61b708ad0a88286c7042145b"
42+
uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
43+
version = "0.4.4"
44+
45+
[[Markdown]]
46+
deps = ["Base64"]
47+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
48+
49+
[[Mmap]]
50+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
51+
52+
[[Pkg]]
53+
deps = ["Dates", "LibGit2", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
54+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
55+
56+
[[Printf]]
57+
deps = ["Unicode"]
58+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
59+
60+
[[REPL]]
61+
deps = ["InteractiveUtils", "Markdown", "Sockets"]
62+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
63+
64+
[[Random]]
65+
deps = ["Serialization"]
66+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
67+
68+
[[Requires]]
69+
deps = ["Test"]
70+
git-tree-sha1 = "f6fbf4ba64d295e146e49e021207993b6b48c7d1"
71+
uuid = "ae029012-a4dd-5104-9daa-d747884805df"
72+
version = "0.5.2"
73+
74+
[[SHA]]
75+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
76+
77+
[[Serialization]]
78+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
79+
80+
[[SharedArrays]]
81+
deps = ["Distributed", "Mmap", "Random", "Serialization"]
82+
uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
83+
84+
[[Sockets]]
85+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
86+
87+
[[SparseArrays]]
88+
deps = ["LinearAlgebra", "Random"]
89+
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
90+
91+
[[Statistics]]
92+
deps = ["LinearAlgebra", "SparseArrays"]
93+
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
94+
95+
[[Test]]
96+
deps = ["Distributed", "InteractiveUtils", "Logging", "Random"]
97+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
98+
99+
[[UUIDs]]
100+
deps = ["Random"]
101+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
102+
103+
[[Unicode]]
104+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

Project.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name = "NNlib"
2+
uuid = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
3+
4+
[deps]
5+
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
6+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
7+
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
8+
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
9+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)