Skip to content

Commit

Permalink
Restructure Project.toml to use [extras] for test dependencies
Browse files Browse the repository at this point in the history
Also ignore the Manifest file, as those should generally not be checked
in for packages.
  • Loading branch information
ararslan committed Jul 16, 2019
1 parent 1383399 commit 5fcb5bc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 55 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.cov
*.mem
data/*.json
Manifest.toml
53 changes: 0 additions & 53 deletions Manifest.toml

This file was deleted.

15 changes: 13 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,20 @@ uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[extras]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[compat]
julia = "0.7, 1.0"

[targets]
test = ["DataStructures", "Distributed", "FixedPointNumbers", "OffsetArrays", "Sockets", "Test"]

0 comments on commit 5fcb5bc

Please sign in to comment.