Skip to content

Commit 06c8c6f

Browse files
committed
add SparseArrays dependency
1 parent 70e4a0a commit 06c8c6f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ NaNMath = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
1212
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
1313
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1414
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
15+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1516
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1617
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1718

@@ -32,8 +33,7 @@ julia = "1"
3233
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
3334
DiffTests = "de460e47-3fe3-5279-bb4a-814414816d5d"
3435
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
35-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
3636
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3737

3838
[targets]
39-
test = ["Calculus", "DiffTests", "SparseArrays", "Test", "InteractiveUtils"]
39+
test = ["Calculus", "DiffTests", "Test", "InteractiveUtils"]

src/ForwardDiff.jl

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ if VERSION >= v"1.6"
88
end
99
using Random
1010
using LinearAlgebra
11+
using SparseArrays
1112

1213
import Printf
1314
import NaNMath

0 commit comments

Comments
 (0)