Skip to content

Commit a710a81

Browse files
baggepinnengdalle
andauthored
Allow AbstractVectors (#45)
* Allow AbstractVectors * Add multiargs test and bump version --------- Co-authored-by: Guillaume Dalle <22795598+gdalle@users.noreply.github.com>
1 parent c854b5d commit a710a81

File tree

7 files changed

+258
-29
lines changed

7 files changed

+258
-29
lines changed

CITATION.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ @misc{ImplicitDifferentiation.jl
22
author = {Guillaume Dalle, Mohamed Tarek and contributors},
33
title = {ImplicitDifferentiation.jl},
44
url = {https://github.com/gdalle/ImplicitDifferentiation.jl},
5-
version = {v0.4.1},
5+
version = {v0.4.2},
66
year = {2023},
77
month = {5}
88
}

Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ImplicitDifferentiation"
22
uuid = "57b37032-215b-411a-8a7c-41a003a55207"
33
authors = ["Guillaume Dalle", "Mohamed Tarek and contributors"]
4-
version = "0.4.1"
4+
version = "0.4.2"
55

66
[deps]
77
AbstractDifferentiation = "c29ec348-61ec-40c8-8164-b8c60e9d9f3d"
@@ -31,6 +31,7 @@ julia = "1.6"
3131
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3232
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
3333
ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a"
34+
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
3435
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3536
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
3637
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
@@ -46,4 +47,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4647
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
4748

4849
[targets]
49-
test = ["Aqua", "ChainRulesCore", "ChainRulesTestUtils", "Documenter", "ForwardDiff", "JET", "JuliaFormatter", "LinearAlgebra", "NLsolve", "Optim", "Pkg", "Random", "SparseArrays", "Test", "Zygote"]
50+
test = ["Aqua", "ChainRulesCore", "ChainRulesTestUtils", "ComponentArrays", "Documenter", "ForwardDiff", "JET", "JuliaFormatter", "LinearAlgebra", "NLsolve", "Optim", "Pkg", "Random", "SparseArrays", "Test", "Zygote"]

docs/Manifest.toml

Lines changed: 164 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# This file is machine-generated - editing it directly is not advised
22

3-
julia_version = "1.8.5"
3+
julia_version = "1.9.0"
44
manifest_format = "2.0"
5-
project_hash = "4c2333aa8abadf9a95e60e340f908dd68a4d2e49"
5+
project_hash = "e7f4896b7e8c3921c7466749f467ab7680867992"
66

77
[[deps.AMD]]
88
deps = ["Libdl", "LinearAlgebra", "SparseArrays", "Test"]
@@ -16,22 +16,47 @@ uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"
1616
version = "0.0.1"
1717

1818
[[deps.AbstractDifferentiation]]
19-
deps = ["ChainRulesCore", "ExprTools", "LinearAlgebra", "Requires"]
19+
deps = ["ExprTools", "LinearAlgebra", "Requires"]
2020
git-tree-sha1 = "f83fd553acff1c6a7f5c4e6f5f2b5941d533cdc9"
2121
uuid = "c29ec348-61ec-40c8-8164-b8c60e9d9f3d"
2222
version = "0.5.2"
2323

24+
[deps.AbstractDifferentiation.extensions]
25+
AbstractDifferentiationChainRulesCoreExt = "ChainRulesCore"
26+
AbstractDifferentiationFiniteDifferencesExt = "FiniteDifferences"
27+
AbstractDifferentiationForwardDiffExt = ["DiffResults", "ForwardDiff"]
28+
AbstractDifferentiationReverseDiffExt = ["DiffResults", "ReverseDiff"]
29+
AbstractDifferentiationTrackerExt = "Tracker"
30+
AbstractDifferentiationZygoteExt = "Zygote"
31+
32+
[deps.AbstractDifferentiation.weakdeps]
33+
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
34+
DiffResults = "163ba53b-c6d8-5494-b064-1a9d43ac40c5"
35+
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
36+
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
37+
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
38+
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
39+
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
40+
2441
[[deps.AbstractFFTs]]
25-
deps = ["ChainRulesCore", "LinearAlgebra"]
42+
deps = ["LinearAlgebra"]
2643
git-tree-sha1 = "16b6dbc4cf7caee4e1e75c49485ec67b667098a0"
2744
uuid = "621f4979-c628-5d54-868e-fcf4e3e8185c"
2845
version = "1.3.1"
46+
weakdeps = ["ChainRulesCore"]
47+
48+
[deps.AbstractFFTs.extensions]
49+
AbstractFFTsChainRulesCoreExt = "ChainRulesCore"
2950

3051
[[deps.Adapt]]
3152
deps = ["LinearAlgebra", "Requires"]
3253
git-tree-sha1 = "cc37d689f599e8df4f464b2fa3870ff7db7492ef"
3354
uuid = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
3455
version = "3.6.1"
56+
weakdeps = ["StaticArrays"]
57+
58+
[deps.Adapt.extensions]
59+
AdaptStaticArraysExt = "StaticArrays"
3560

3661
[[deps.ArgTools]]
3762
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
@@ -43,6 +68,22 @@ git-tree-sha1 = "38911c7737e123b28182d89027f4216cfc8a9da7"
4368
uuid = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
4469
version = "7.4.3"
4570

71+
[deps.ArrayInterface.extensions]
72+
ArrayInterfaceBandedMatricesExt = "BandedMatrices"
73+
ArrayInterfaceBlockBandedMatricesExt = "BlockBandedMatrices"
74+
ArrayInterfaceCUDAExt = "CUDA"
75+
ArrayInterfaceGPUArraysCoreExt = "GPUArraysCore"
76+
ArrayInterfaceStaticArraysCoreExt = "StaticArraysCore"
77+
ArrayInterfaceTrackerExt = "Tracker"
78+
79+
[deps.ArrayInterface.weakdeps]
80+
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
81+
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
82+
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
83+
GPUArraysCore = "46192b85-c4d5-4398-a991-12ede77f4527"
84+
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
85+
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
86+
4687
[[deps.Artifacts]]
4788
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
4889

@@ -85,22 +126,56 @@ uuid = "bbf7d656-a473-5ed7-a52c-81e309532950"
85126
version = "0.3.0"
86127

87128
[[deps.Compat]]
88-
deps = ["Dates", "LinearAlgebra", "UUIDs"]
129+
deps = ["UUIDs"]
89130
git-tree-sha1 = "7a60c856b9fa189eb34f5f8a6f6b5529b7942957"
90131
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
91132
version = "4.6.1"
133+
weakdeps = ["Dates", "LinearAlgebra"]
134+
135+
[deps.Compat.extensions]
136+
CompatLinearAlgebraExt = "LinearAlgebra"
92137

93138
[[deps.CompilerSupportLibraries_jll]]
94139
deps = ["Artifacts", "Libdl"]
95140
uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae"
96-
version = "1.0.1+0"
141+
version = "1.0.2+0"
142+
143+
[[deps.ComponentArrays]]
144+
deps = ["ArrayInterface", "ChainRulesCore", "ForwardDiff", "Functors", "LinearAlgebra", "Requires", "StaticArrayInterface"]
145+
git-tree-sha1 = "891f08177789faff56f0deda1e23615ec220ce44"
146+
uuid = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
147+
version = "0.13.12"
148+
149+
[deps.ComponentArrays.extensions]
150+
ComponentArraysConstructionBaseExt = "ConstructionBase"
151+
ComponentArraysGPUArraysExt = "GPUArrays"
152+
ComponentArraysRecursiveArrayToolsExt = "RecursiveArrayTools"
153+
ComponentArraysReverseDiffExt = "ReverseDiff"
154+
ComponentArraysSciMLBaseExt = "SciMLBase"
155+
ComponentArraysStaticArraysExt = "StaticArrays"
156+
157+
[deps.ComponentArrays.weakdeps]
158+
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
159+
GPUArrays = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7"
160+
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
161+
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
162+
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
163+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
97164

98165
[[deps.ConstructionBase]]
99166
deps = ["LinearAlgebra"]
100167
git-tree-sha1 = "89a9db8d28102b094992472d333674bd1a83ce2a"
101168
uuid = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
102169
version = "1.5.1"
103170

171+
[deps.ConstructionBase.extensions]
172+
IntervalSetsExt = "IntervalSets"
173+
StaticArraysExt = "StaticArrays"
174+
175+
[deps.ConstructionBase.weakdeps]
176+
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
177+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
178+
104179
[[deps.DataAPI]]
105180
git-tree-sha1 = "e8119c1a33d267e16108be441a287a6981ba1630"
106181
uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
@@ -192,10 +267,20 @@ uuid = "26cc04aa-876d-5657-8c51-4c34ba976000"
192267
version = "0.12.26"
193268

194269
[[deps.ForwardDiff]]
195-
deps = ["CommonSubexpressions", "DiffResults", "DiffRules", "LinearAlgebra", "LogExpFunctions", "NaNMath", "Preferences", "Printf", "Random", "SpecialFunctions", "StaticArrays"]
270+
deps = ["CommonSubexpressions", "DiffResults", "DiffRules", "LinearAlgebra", "LogExpFunctions", "NaNMath", "Preferences", "Printf", "Random", "SpecialFunctions"]
196271
git-tree-sha1 = "00e252f4d706b3d55a8863432e742bf5717b498d"
197272
uuid = "f6369f11-7733-5829-9624-2563aa707210"
198273
version = "0.10.35"
274+
weakdeps = ["StaticArrays"]
275+
276+
[deps.ForwardDiff.extensions]
277+
ForwardDiffStaticArraysExt = "StaticArrays"
278+
279+
[[deps.Functors]]
280+
deps = ["LinearAlgebra"]
281+
git-tree-sha1 = "478f8c3145bb91d82c2cf20433e8c1b30df454cc"
282+
uuid = "d9f16b24-f501-4c13-a1f2-28368ffc5196"
283+
version = "0.4.4"
199284

200285
[[deps.Future]]
201286
deps = ["Random"]
@@ -225,11 +310,21 @@ git-tree-sha1 = "0ade27f0c49cebd8db2523c4eeccf779407cf12c"
225310
uuid = "7869d1d1-7146-5819-86e3-90919afe41df"
226311
version = "0.4.9"
227312

313+
[[deps.IfElse]]
314+
git-tree-sha1 = "debdd00ffef04665ccbb3e150747a77560e8fad1"
315+
uuid = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173"
316+
version = "0.1.1"
317+
228318
[[deps.ImplicitDifferentiation]]
229-
deps = ["AbstractDifferentiation", "ChainRulesCore", "Krylov", "LinearOperators", "Requires"]
319+
deps = ["AbstractDifferentiation", "Krylov", "LinearOperators", "Requires"]
230320
path = ".."
231321
uuid = "57b37032-215b-411a-8a7c-41a003a55207"
232-
version = "0.4.0"
322+
version = "0.4.1"
323+
weakdeps = ["ChainRulesCore", "ForwardDiff"]
324+
325+
[deps.ImplicitDifferentiation.extensions]
326+
ImplicitDifferentiationChainRulesExt = "ChainRulesCore"
327+
ImplicitDifferentiationForwardDiffExt = "ForwardDiff"
233328

234329
[[deps.InteractiveUtils]]
235330
deps = ["Markdown"]
@@ -320,7 +415,7 @@ uuid = "d3d80556-e9d4-5f37-9878-2ab0fcc64255"
320415
version = "7.2.0"
321416

322417
[[deps.LinearAlgebra]]
323-
deps = ["Libdl", "libblastrampoline_jll"]
418+
deps = ["Libdl", "OpenBLAS_jll", "libblastrampoline_jll"]
324419
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
325420

326421
[[deps.LinearOperators]]
@@ -336,10 +431,16 @@ uuid = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
336431
version = "2.14.0"
337432

338433
[[deps.LogExpFunctions]]
339-
deps = ["ChainRulesCore", "ChangesOfVariables", "DocStringExtensions", "InverseFunctions", "IrrationalConstants", "LinearAlgebra"]
434+
deps = ["DocStringExtensions", "IrrationalConstants", "LinearAlgebra"]
340435
git-tree-sha1 = "0a1b7c2863e44523180fdb3146534e265a91870b"
341436
uuid = "2ab3a3ac-af41-5b50-aa03-7779005ae688"
342437
version = "0.3.23"
438+
weakdeps = ["ChainRulesCore", "ChangesOfVariables", "InverseFunctions"]
439+
440+
[deps.LogExpFunctions.extensions]
441+
LogExpFunctionsChainRulesCoreExt = "ChainRulesCore"
442+
LogExpFunctionsChangesOfVariablesExt = "ChangesOfVariables"
443+
LogExpFunctionsInverseFunctionsExt = "InverseFunctions"
343444

344445
[[deps.Logging]]
345446
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
@@ -357,7 +458,7 @@ uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
357458
[[deps.MbedTLS_jll]]
358459
deps = ["Artifacts", "Libdl"]
359460
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
360-
version = "2.28.0+0"
461+
version = "2.28.2+0"
361462

362463
[[deps.Missings]]
363464
deps = ["DataAPI"]
@@ -370,7 +471,7 @@ uuid = "a63ad114-7e13-5084-954f-fe012c677804"
370471

371472
[[deps.MozillaCACerts_jll]]
372473
uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
373-
version = "2022.2.1"
474+
version = "2022.10.11"
374475

375476
[[deps.NLSolversBase]]
376477
deps = ["DiffResults", "Distributed", "FiniteDiff", "ForwardDiff"]
@@ -397,7 +498,7 @@ version = "1.2.0"
397498
[[deps.OpenBLAS_jll]]
398499
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"]
399500
uuid = "4536629a-c528-5b80-bd46-f80d51c5b363"
400-
version = "0.3.20+0"
501+
version = "0.3.21+4"
401502

402503
[[deps.OpenLibm_jll]]
403504
deps = ["Artifacts", "Libdl"]
@@ -434,9 +535,9 @@ uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
434535
version = "2.5.8"
435536

436537
[[deps.Pkg]]
437-
deps = ["Artifacts", "Dates", "Downloads", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
538+
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
438539
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
439-
version = "1.8.0"
540+
version = "1.9.0"
440541

441542
[[deps.PositiveFactorizations]]
442543
deps = ["LinearAlgebra"]
@@ -514,14 +615,38 @@ uuid = "a2af1166-a08f-5f64-846c-94a0d3cef48c"
514615
version = "1.1.0"
515616

516617
[[deps.SparseArrays]]
517-
deps = ["LinearAlgebra", "Random"]
618+
deps = ["Libdl", "LinearAlgebra", "Random", "Serialization", "SuiteSparse_jll"]
518619
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
519620

520621
[[deps.SpecialFunctions]]
521-
deps = ["ChainRulesCore", "IrrationalConstants", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"]
622+
deps = ["IrrationalConstants", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"]
522623
git-tree-sha1 = "ef28127915f4229c971eb43f3fc075dd3fe91880"
523624
uuid = "276daf66-3868-5448-9aa4-cd146d93841b"
524625
version = "2.2.0"
626+
weakdeps = ["ChainRulesCore"]
627+
628+
[deps.SpecialFunctions.extensions]
629+
SpecialFunctionsChainRulesCoreExt = "ChainRulesCore"
630+
631+
[[deps.Static]]
632+
deps = ["IfElse"]
633+
git-tree-sha1 = "dbde6766fc677423598138a5951269432b0fcc90"
634+
uuid = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
635+
version = "0.8.7"
636+
637+
[[deps.StaticArrayInterface]]
638+
deps = ["ArrayInterface", "Compat", "IfElse", "LinearAlgebra", "Requires", "SnoopPrecompile", "SparseArrays", "Static", "SuiteSparse"]
639+
git-tree-sha1 = "33040351d2403b84afce74dae2e22d3f5b18edcb"
640+
uuid = "0d7ed370-da01-4f52-bd93-41d350b8b718"
641+
version = "1.4.0"
642+
643+
[deps.StaticArrayInterface.extensions]
644+
StaticArrayInterfaceOffsetArraysExt = "OffsetArrays"
645+
StaticArrayInterfaceStaticArraysExt = "StaticArrays"
646+
647+
[deps.StaticArrayInterface.weakdeps]
648+
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
649+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
525650

526651
[[deps.StaticArrays]]
527652
deps = ["LinearAlgebra", "Random", "StaticArraysCore", "Statistics"]
@@ -537,6 +662,7 @@ version = "1.4.0"
537662
[[deps.Statistics]]
538663
deps = ["LinearAlgebra", "SparseArrays"]
539664
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
665+
version = "1.9.0"
540666

541667
[[deps.StatsAPI]]
542668
deps = ["LinearAlgebra"]
@@ -560,10 +686,15 @@ version = "0.6.15"
560686
deps = ["Libdl", "LinearAlgebra", "Serialization", "SparseArrays"]
561687
uuid = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
562688

689+
[[deps.SuiteSparse_jll]]
690+
deps = ["Artifacts", "Libdl", "Pkg", "libblastrampoline_jll"]
691+
uuid = "bea87d4a-7f5b-5778-9afe-8cc45184846c"
692+
version = "5.10.1+6"
693+
563694
[[deps.TOML]]
564695
deps = ["Dates"]
565696
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
566-
version = "1.0.0"
697+
version = "1.0.3"
567698

568699
[[deps.TableTraits]]
569700
deps = ["IteratorInterfaceExtensions"]
@@ -580,7 +711,7 @@ version = "1.10.1"
580711
[[deps.Tar]]
581712
deps = ["ArgTools", "SHA"]
582713
uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
583-
version = "1.10.1"
714+
version = "1.10.0"
584715

585716
[[deps.Test]]
586717
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
@@ -607,24 +738,34 @@ uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
607738
[[deps.Zlib_jll]]
608739
deps = ["Libdl"]
609740
uuid = "83775a58-1f1d-513f-b197-d71354ab007a"
610-
version = "1.2.12+3"
741+
version = "1.2.13+0"
611742

612743
[[deps.Zygote]]
613744
deps = ["AbstractFFTs", "ChainRules", "ChainRulesCore", "DiffRules", "Distributed", "FillArrays", "ForwardDiff", "GPUArrays", "GPUArraysCore", "IRTools", "InteractiveUtils", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NaNMath", "Random", "Requires", "SnoopPrecompile", "SparseArrays", "SpecialFunctions", "Statistics", "ZygoteRules"]
614745
git-tree-sha1 = "987ae5554ca90e837594a0f30325eeb5e7303d1e"
615746
uuid = "e88e6eb3-aa80-5325-afca-941959d7151f"
616747
version = "0.6.60"
617748

749+
[deps.Zygote.extensions]
750+
ZygoteColorsExt = "Colors"
751+
ZygoteDistancesExt = "Distances"
752+
ZygoteTrackerExt = "Tracker"
753+
754+
[deps.Zygote.weakdeps]
755+
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
756+
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
757+
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
758+
618759
[[deps.ZygoteRules]]
619760
deps = ["ChainRulesCore", "MacroTools"]
620761
git-tree-sha1 = "977aed5d006b840e2e40c0b48984f7463109046d"
621762
uuid = "700de1a5-db45-46bc-99cf-38207098b444"
622763
version = "0.2.3"
623764

624765
[[deps.libblastrampoline_jll]]
625-
deps = ["Artifacts", "Libdl", "OpenBLAS_jll"]
766+
deps = ["Artifacts", "Libdl"]
626767
uuid = "8e850b90-86db-534c-a0d3-1478176c7d93"
627-
version = "5.1.1+0"
768+
version = "5.7.0+0"
628769

629770
[[deps.nghttp2_jll]]
630771
deps = ["Artifacts", "Libdl"]

0 commit comments

Comments
 (0)