Skip to content

Commit

Permalink
Fix Project.toml dependencies (JuliaLang#474)
Browse files Browse the repository at this point in the history
LinearAlgebra, Random, and SparseArrays are direct dependencies but were
only listed as test dependencies.
  • Loading branch information
ararslan committed Mar 4, 2019
1 parent de4b0c4 commit 5c9ca27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Missings = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SortingAlgorithms = "a2af1166-a08f-5f64-846c-94a0d3cef48c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[extras]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["DelimitedFiles", "LinearAlgebra", "Random", "SparseArrays", "Test"]
test = ["DelimitedFiles", "Test"]

0 comments on commit 5c9ca27

Please sign in to comment.