Skip to content

Commit 68437f7

Browse files
Add AllocCheck to all lib package test dependencies
- Added AllocCheck to [extras], [compat], and [targets] sections - Uses AllocCheck v0.2 for allocation testing - Enables allocation checking in all sublibrary tests
1 parent c2ec115 commit 68437f7

File tree

33 files changed

+354
-202
lines changed

33 files changed

+354
-202
lines changed

lib/ImplicitDiscreteSolve/Project.toml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@ authors = ["vyudu <vincent.duyuan@gmail.com>"]
44
version = "1.0.0"
55

66
[deps]
7-
SimpleNonlinearSolve = "727e6d20-b764-4bd8-a329-72de5adea6c7"
8-
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
7+
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
8+
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
99
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
1010
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
11+
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
12+
SimpleNonlinearSolve = "727e6d20-b764-4bd8-a329-72de5adea6c7"
1113
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
12-
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
13-
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1414

1515
[extras]
1616
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
1717
OrdinaryDiffEqSDIRK = "2d112036-d095-4a1e-ab9a-08536f3ecdbf"
1818
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1919
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
20+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
2021

2122
[compat]
2223
Test = "1.10.0"
@@ -27,10 +28,14 @@ OrdinaryDiffEqCore = "1.18.1"
2728
Aqua = "0.8.11"
2829
SymbolicIndexingInterface = "0.3.38"
2930
julia = "1.10"
30-
31+
JET = "0.9.18, 0.10.4"
32+
UnPack = "1.0.2"
33+
AllocCheck = "0.2"
34+
DiffEqBase = "6.164.1"
35+
Reexport = "1.2.2"
3136

3237
[targets]
33-
test = ["OrdinaryDiffEqSDIRK", "Test", "JET", "Aqua"]
38+
test = ["OrdinaryDiffEqSDIRK", "Test", "JET", "Aqua", "AllocCheck"]
3439

3540
[sources.OrdinaryDiffEqCore]
36-
path = "../OrdinaryDiffEqCore"
41+
path = "../OrdinaryDiffEqCore"

lib/OrdinaryDiffEqAdamsBashforthMoulton/Project.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ authors = ["ParamThakkar123 <paramthakkar864@gmail.com>"]
44
version = "1.3.0"
55

66
[deps]
7-
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
7+
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
88
Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
99
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
1010
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
1111
OrdinaryDiffEqLowOrderRK = "1344f307-1e59-4825-a18e-ace9aa3fa4c6"
1212
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
1313
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
14+
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1415
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
1516
MuladdMacro = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221"
16-
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
1717

1818
[extras]
1919
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
@@ -22,6 +22,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2222
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
2323
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
2424
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
25+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
2526
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
2627
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2728

@@ -41,16 +42,16 @@ julia = "1.10"
4142
JET = "0.9.18, 0.10.4"
4243
RecursiveArrayTools = "3.27.0"
4344
ODEProblemLibrary = "0.1.8"
45+
AllocCheck = "0.2"
4446
DiffEqBase = "6.152.2"
4547
Reexport = "1.2.2"
4648
SafeTestsets = "0.1.0"
4749

48-
4950
[targets]
50-
test = ["DiffEqDevTools", "ODEProblemLibrary", "Random", "SafeTestsets", "Test", "DiffEqBase", "JET", "Aqua"]
51+
test = ["DiffEqDevTools", "ODEProblemLibrary", "Random", "SafeTestsets", "Test", "DiffEqBase", "JET", "Aqua", "AllocCheck"]
5152

5253
[sources.OrdinaryDiffEqLowOrderRK]
5354
path = "../OrdinaryDiffEqLowOrderRK"
5455

5556
[sources.OrdinaryDiffEqCore]
56-
path = "../OrdinaryDiffEqCore"
57+
path = "../OrdinaryDiffEqCore"

lib/OrdinaryDiffEqBDF/Project.toml

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,26 @@ authors = ["ParamThakkar123 <paramthakkar864@gmail.com>"]
44
version = "1.8.0"
55

66
[deps]
7-
MuladdMacro = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221"
8-
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
9-
10-
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
11-
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
12-
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
137
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
8+
MuladdMacro = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221"
9+
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1410
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1511
OrdinaryDiffEqDifferentiation = "4302a76b-040a-498a-8c04-15b101fed76b"
1612
OrdinaryDiffEqSDIRK = "2d112036-d095-4a1e-ab9a-08536f3ecdbf"
1713
TruncatedStacktraces = "781d530d-4396-4725-bb49-402e4bee1e77"
14+
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1815
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
1916
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
17+
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
2018
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
2119
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
20+
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
2221
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
2322
OrdinaryDiffEqNonlinearSolve = "127b3ac7-2247-4354-8eb6-78cf4e7c58e8"
23+
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
2424
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2525

2626
[extras]
27-
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
2827
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
2928
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
3029
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
@@ -36,34 +35,44 @@ Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9"
3635
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
3736
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
3837
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
38+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
3939
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
4040

4141
[compat]
42-
ADTypes = "1.11"
43-
ArrayInterface = "7.15.0"
44-
Enzyme = "0.13"
45-
FastBroadcast = "0.3.5"
42+
NonlinearSolve = "4"
4643
ForwardDiff = "0.10.36, 1"
47-
LinearAlgebra = "<0.0.1, 1"
44+
Test = "<0.0.1, 1"
45+
FastBroadcast = "0.3.5"
46+
Random = "<0.0.1, 1"
47+
DiffEqDevTools = "2.44.4"
48+
MuladdMacro = "0.2.4"
4849
LinearSolve = "3"
50+
PrecompileTools = "1.2.1"
51+
LinearAlgebra = "<0.0.1, 1"
52+
OrdinaryDiffEqDifferentiation = "1.5"
53+
OrdinaryDiffEqSDIRK = "1.3"
54+
TruncatedStacktraces = "1.4.0"
55+
SciMLBase = "2"
56+
OrdinaryDiffEqCore = "1.21"
57+
Aqua = "0.8.11"
58+
ArrayInterface = "7.15.0"
59+
Enzyme = "0.13"
60+
Preferences = "1.4.3"
4961
MacroTools = "0.5.13"
50-
MuladdMacro = "0.2.4"
51-
NonlinearSolve = "4"
62+
JET = "0.9.18, 0.10.4"
63+
StaticArrays = "1.9.7"
64+
julia = "1.10"
65+
ADTypes = "1.11"
66+
RecursiveArrayTools = "3.27.0"
5267
ODEProblemLibrary = "0.1.8"
5368
OrdinaryDiffEqNonlinearSolve = "1.6"
69+
AllocCheck = "0.2"
5470
DiffEqBase = "6.169.1"
5571
Reexport = "1.2.2"
5672
SafeTestsets = "0.1.0"
57-
StaticArrays = "1.9.7"
58-
Test = "<0.0.1, 1"
59-
TruncatedStacktraces = "1.4.0"
60-
SciMLBase = "2"
61-
julia = "1.10"
62-
63-
AllocCheck = "0.2"
6473

6574
[targets]
66-
test = ["AllocCheck", "Aqua", "DiffEqDevTools", "Enzyme", "ForwardDiff", "JET", "LinearSolve", "NonlinearSolve", "ODEProblemLibrary", "Random", "SafeTestsets", "StaticArrays", "Test"]
75+
test = ["DiffEqDevTools", "ForwardDiff", "Random", "SafeTestsets", "Test", "ODEProblemLibrary", "NonlinearSolve", "StaticArrays", "Enzyme", "LinearSolve", "JET", "Aqua", "AllocCheck"]
6776

6877
[sources.OrdinaryDiffEqSDIRK]
6978
path = "../OrdinaryDiffEqSDIRK"
@@ -75,4 +84,4 @@ path = "../OrdinaryDiffEqDifferentiation"
7584
path = "../OrdinaryDiffEqNonlinearSolve"
7685

7786
[sources.OrdinaryDiffEqCore]
78-
path = "../OrdinaryDiffEqCore"
87+
path = "../OrdinaryDiffEqCore"

lib/OrdinaryDiffEqCore/Project.toml

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ authors = ["ParamThakkar123 <paramthakkar864@gmail.com>"]
44
version = "1.27.0"
55

66
[deps]
7-
SciMLOperators = "c0aeaf25-5076-4817-a8d5-81caf7dfa961"
8-
SciMLStructures = "53ae85a6-f571-4167-b2af-e1d143709226"
7+
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
8+
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
99
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
1010
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
1111
FunctionWrappersWrappers = "77dc65aa-8811-40c2-897b-53d922fa7daf"
@@ -33,27 +33,25 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
3333
FastPower = "a4df4552-cc26-4903-aec0-212e50a0e84b"
3434
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
3535
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
36+
SciMLStructures = "53ae85a6-f571-4167-b2af-e1d143709226"
37+
SciMLOperators = "c0aeaf25-5076-4817-a8d5-81caf7dfa961"
3638
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
37-
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
38-
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
39-
40-
[weakdeps]
41-
EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869"
4239

4340
[extras]
4441
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
4542
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4643
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
4744
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
4845
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
46+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
4947
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
5048

5149
[compat]
52-
SafeTestsets = "0.1.0"
53-
SciMLOperators = "0.3, 0.4, 1"
50+
FillArrays = "1.9"
51+
Adapt = "3.0, 4"
5452
Accessors = "0.1.36"
55-
SciMLStructures = "1"
5653
StaticArraysCore = "1.0"
54+
Reexport = "1.0"
5755
FunctionWrappersWrappers = "0.1"
5856
FastBroadcast = "0.2, 0.3"
5957
Random = "<0.0.1, 1"
@@ -79,11 +77,26 @@ Preferences = "1.3"
7977
SymbolicIndexingInterface = "0.3.31"
8078
MacroTools = "0.5"
8179
julia = "1.10"
80+
JET = "0.9.18, 0.10.4"
81+
ADTypes = "1.13"
82+
InteractiveUtils = "1.9"
83+
RecursiveArrayTools = "2.36, 3"
84+
FastPower = "1"
85+
Logging = "1.9"
86+
Mooncake = "0.4"
87+
AllocCheck = "0.2"
88+
DiffEqBase = "6.182.0"
89+
SafeTestsets = "0.1.0"
90+
SciMLOperators = "0.3, 0.4, 1"
91+
SciMLStructures = "1"
8292

93+
[weakdeps]
94+
Mooncake = "da2b9cff-9c12-43a0-ae48-6db2b0edb7d6"
95+
EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869"
8396

8497
[targets]
85-
test = ["DiffEqDevTools", "Random", "SafeTestsets", "Test", "JET", "Aqua"]
98+
test = ["DiffEqDevTools", "Random", "SafeTestsets", "Test", "JET", "Aqua", "AllocCheck"]
8699

87100
[extensions]
88101
OrdinaryDiffEqCoreEnzymeCoreExt = "EnzymeCore"
89-
OrdinaryDiffEqCoreMooncakeExt = "Mooncake"
102+
OrdinaryDiffEqCoreMooncakeExt = "Mooncake"

lib/OrdinaryDiffEqDefault/Project.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2727
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2828
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
2929
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
30+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
3031
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
3132

3233
[compat]
@@ -47,10 +48,16 @@ Aqua = "0.8.11"
4748
Preferences = "1.4.3"
4849
StaticArrays = "1.0"
4950
julia = "1.10"
50-
51+
JET = "0.9.18, 0.10.4"
52+
ADTypes = "1.11"
53+
OrdinaryDiffEqRosenbrock = "<0.0.1, 1"
54+
DiffEqBase = "6.152.2"
55+
Reexport = "1.2.2"
56+
SafeTestsets = "0.1.0"
57+
AllocCheck = "0.2"
5158

5259
[targets]
53-
test = ["DiffEqDevTools", "Random", "SafeTestsets", "SparseArrays", "StaticArrays", "Test", "JET", "Aqua"]
60+
test = ["DiffEqDevTools", "Random", "SafeTestsets", "SparseArrays", "StaticArrays", "Test", "JET", "Aqua", "AllocCheck"]
5461

5562
[sources.OrdinaryDiffEqTsit5]
5663
path = "../OrdinaryDiffEqTsit5"
@@ -65,4 +72,4 @@ path = "../OrdinaryDiffEqRosenbrock"
6572
path = "../OrdinaryDiffEqCore"
6673

6774
[sources.OrdinaryDiffEqVerner]
68-
path = "../OrdinaryDiffEqVerner"
75+
path = "../OrdinaryDiffEqVerner"

lib/OrdinaryDiffEqDifferentiation/Project.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3030
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
3131
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
3232
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
33+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
3334
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
3435

3536
[compat]
@@ -54,10 +55,15 @@ ArrayInterface = "7"
5455
StaticArrays = "1"
5556
SparseMatrixColorings = "0.4.14"
5657
julia = "1.10"
57-
58+
ADTypes = "1.14"
59+
JET = "0.9.18, 0.10.4"
60+
AllocCheck = "0.2"
61+
DiffEqBase = "6"
62+
SafeTestsets = "0.1.0"
63+
SciMLOperators = "0.3.13, 0.4, 1"
5864

5965
[targets]
60-
test = ["DiffEqDevTools", "Random", "SafeTestsets", "Test", "JET", "Aqua"]
66+
test = ["DiffEqDevTools", "Random", "SafeTestsets", "Test", "JET", "Aqua", "AllocCheck"]
6167

6268
[sources.OrdinaryDiffEqCore]
63-
path = "../OrdinaryDiffEqCore"
69+
path = "../OrdinaryDiffEqCore"

lib/OrdinaryDiffEqExplicitRK/Project.toml

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,46 @@ authors = ["ParamThakkar123 <paramthakkar864@gmail.com>"]
44
version = "1.2.0"
55

66
[deps]
7-
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
7+
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9+
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
10+
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
811
TruncatedStacktraces = "781d530d-4396-4725-bb49-402e4bee1e77"
12+
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
13+
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
914
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
10-
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
11-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1215
MuladdMacro = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221"
13-
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
1416

1517
[extras]
16-
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
17-
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
18-
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
1918
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
19+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2020
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
21+
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
22+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
23+
AllocCheck = "9b6a8646-10ed-4c81-ac63-a83d87ebca79"
2124
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
22-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2325

2426
[compat]
2527
Test = "<0.0.1, 1"
2628
FastBroadcast = "0.3"
2729
Random = "<0.0.1, 1"
28-
SafeTestsets = "0.1.0"
30+
DiffEqDevTools = "2.44.4"
31+
MuladdMacro = "0.2"
32+
LinearAlgebra = "1.10"
2933
TruncatedStacktraces = "1"
3034
SciMLBase = "2"
3135
OrdinaryDiffEqCore = "1"
3236
Aqua = "0.8.11"
3337
julia = "1.10"
34-
38+
JET = "0.9.18, 0.10.4"
39+
RecursiveArrayTools = "3"
3540
AllocCheck = "0.2"
41+
DiffEqBase = "6"
42+
SafeTestsets = "0.1.0"
43+
Reexport = "1.2.2"
3644

3745
[targets]
38-
test = ["AllocCheck", "Aqua", "DiffEqDevTools", "JET", "Random", "SafeTestsets", "Test"]
46+
test = ["DiffEqDevTools", "Random", "SafeTestsets", "Test", "JET", "Aqua", "AllocCheck"]
3947

4048
[sources.OrdinaryDiffEqCore]
41-
path = "../OrdinaryDiffEqCore"
49+
path = "../OrdinaryDiffEqCore"

0 commit comments

Comments
 (0)