aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-07-27 22:41:04 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-07-27 22:41:04 -0400
commita4dacd2909426bf628c1eee1253cc5c8a01e2691 (patch)
treea6b53de82f12e6778ede2b3974073a6c3b51aace
parentf836e09981866f5c9f2ae46990d11b186a7d12bb (diff)
package updates
-rw-r--r--lib/Hashing.Portable/tests/VNLib.Hashing.PortableTests.csproj4
-rw-r--r--lib/Net.Compression/VNLib.Net.CompressionTests/VNLib.Net.CompressionTests.csproj4
-rw-r--r--lib/Net.Compression/vnlib_compress/CMakeLists.txt2
-rw-r--r--lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj2
-rw-r--r--lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj2
-rw-r--r--lib/Utils/tests/VNLib.UtilsTests.csproj4
-rw-r--r--third-party/DotNetCorePlugins/src/McMaster.NETCore.Plugins.csproj2
7 files changed, 10 insertions, 10 deletions
diff --git a/lib/Hashing.Portable/tests/VNLib.Hashing.PortableTests.csproj b/lib/Hashing.Portable/tests/VNLib.Hashing.PortableTests.csproj
index 34372a8..eb95e7c 100644
--- a/lib/Hashing.Portable/tests/VNLib.Hashing.PortableTests.csproj
+++ b/lib/Hashing.Portable/tests/VNLib.Hashing.PortableTests.csproj
@@ -15,8 +15,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
- <PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
- <PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
+ <PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
+ <PackageReference Include="MSTest.TestFramework" Version="3.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
diff --git a/lib/Net.Compression/VNLib.Net.CompressionTests/VNLib.Net.CompressionTests.csproj b/lib/Net.Compression/VNLib.Net.CompressionTests/VNLib.Net.CompressionTests.csproj
index f8655fb..1698a8e 100644
--- a/lib/Net.Compression/VNLib.Net.CompressionTests/VNLib.Net.CompressionTests.csproj
+++ b/lib/Net.Compression/VNLib.Net.CompressionTests/VNLib.Net.CompressionTests.csproj
@@ -9,8 +9,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
- <PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
- <PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
+ <PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
+ <PackageReference Include="MSTest.TestFramework" Version="3.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
diff --git a/lib/Net.Compression/vnlib_compress/CMakeLists.txt b/lib/Net.Compression/vnlib_compress/CMakeLists.txt
index cbaca97..6097a34 100644
--- a/lib/Net.Compression/vnlib_compress/CMakeLists.txt
+++ b/lib/Net.Compression/vnlib_compress/CMakeLists.txt
@@ -39,7 +39,7 @@ if(ENABLE_BROTLI)
FetchContent_Declare(
lib_brotli
GIT_REPOSITORY https://github.com/google/brotli.git
- GIT_TAG a528bce9f65be7515a47cec2cbdcd8023822b99b
+ GIT_TAG 39bcecf4559f9b0e75c6248a75d9c0db6b123d88
GIT_PROGRESS TRUE
)
diff --git a/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj b/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj
index 6932138..95f7e05 100644
--- a/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj
+++ b/lib/Net.Rest.Client/src/VNLib.Net.Rest.Client.csproj
@@ -35,7 +35,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="RestSharp" Version="111.3.0" />
+ <PackageReference Include="RestSharp" Version="111.4.0" />
</ItemGroup>
<ItemGroup>
diff --git a/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj b/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
index d9eb201..2f4abfa 100644
--- a/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
+++ b/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
@@ -35,7 +35,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="Serilog" Version="4.0.0" />
+ <PackageReference Include="Serilog" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
</ItemGroup>
diff --git a/lib/Utils/tests/VNLib.UtilsTests.csproj b/lib/Utils/tests/VNLib.UtilsTests.csproj
index 383382e..0a425a9 100644
--- a/lib/Utils/tests/VNLib.UtilsTests.csproj
+++ b/lib/Utils/tests/VNLib.UtilsTests.csproj
@@ -17,8 +17,8 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
- <PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
- <PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
+ <PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
+ <PackageReference Include="MSTest.TestFramework" Version="3.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
diff --git a/third-party/DotNetCorePlugins/src/McMaster.NETCore.Plugins.csproj b/third-party/DotNetCorePlugins/src/McMaster.NETCore.Plugins.csproj
index fbc293c..dcb24e7 100644
--- a/third-party/DotNetCorePlugins/src/McMaster.NETCore.Plugins.csproj
+++ b/third-party/DotNetCorePlugins/src/McMaster.NETCore.Plugins.csproj
@@ -16,7 +16,7 @@ See https://github.com/natemcmaster/DotNetCorePlugins/blob/main/README.md for mo
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
- <PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
+ <PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.1" />
</ItemGroup>
<ItemGroup>