Skip to content

Commit

Permalink
Merge pull request #352 from moreal/bump-deps
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
boscohyun authored Sep 30, 2024
2 parents 8327773 + 0431664 commit 40d01ce
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 27 deletions.
5 changes: 5 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<NoWarn>NU1605</NoWarn>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions Lib9c.GraphQL/Lib9c.GraphQL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Lib9c" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39" />
<PackageReference Include="Libplanet" Version="5.2.2" />
<PackageReference Include="Lib9c" Version="1.18.0" />
<PackageReference Include="Libplanet" Version="5.3.0-alpha.3" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Lib9c.Models.Tests/Fixtures/Types/States/VanillaState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ public VanillaState(Address address) : base(address)
public VanillaState(IValue iValue) : base(iValue)
{
}

public override IValue Serialize() => SerializeBase();
}
3 changes: 2 additions & 1 deletion Lib9c.Models.Tests/Lib9c.Models.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Lib9c" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39" />
<PackageReference Include="Lib9c" Version="1.18.0" />
<PackageReference Include="Libplanet" Version="5.3.0-alpha.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="xunit" Version="2.5.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3"/>
Expand Down
15 changes: 0 additions & 15 deletions Lib9c.Models.Tests/States/StateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,8 @@ public void Test()
var paired = new State(serialized);
Assert.Equal(target.address, paired.Address);

// serialize target state and deserialize as paired state
serialized = target.SerializeV2();
paired = new State(serialized);
Assert.Equal(target.address, paired.Address);

// serialize target state and deserialize as paired state
serialized = target.SerializeList();
paired = new State(serialized);
Assert.Equal(target.address, paired.Address);

// serialize paired state and verify
var bencoded = paired.Bencoded;
Assert.Equal(serialized, bencoded);

// deserialize bencoded state as target2 and verify
var target2 = new VanillaState(bencoded);
var serialized2 = target2.SerializeList();
Assert.Equal(serialized, serialized2);
}
}
4 changes: 2 additions & 2 deletions Lib9c.Models/Lib9c.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.12" />
<PackageReference Include="Lib9c" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39" />
<PackageReference Include="Libplanet" Version="5.2.2" />
<PackageReference Include="Lib9c" Version="1.18.0" />
<PackageReference Include="Libplanet" Version="5.3.0-alpha.3" />
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />
</ItemGroup>

Expand Down
3 changes: 2 additions & 1 deletion Mimir.MongoDB/Mimir.MongoDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Lib9c" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39"/>
<PackageReference Include="Lib9c" Version="1.18.0"/>
<PackageReference Include="Libplanet" Version="5.3.0-alpha.3" />
<PackageReference Include="MongoDB.Bson" Version="2.29.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
</ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions Mimir.Worker/Mimir.Worker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

<ItemGroup>
<PackageReference Include="HotChocolate.Data.MongoDb" Version="13.9.12" />
<PackageReference Include="Lib9c" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39" />
<PackageReference Include="Lib9c.Abstractions" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39" />
<PackageReference Include="Libplanet.RocksDBStore" Version="5.2.2" />
<PackageReference Include="Libplanet" Version="5.2.2" />
<PackageReference Include="Lib9c" Version="1.18.0" />
<PackageReference Include="Lib9c.Abstractions" Version="1.18.0" />
<PackageReference Include="Libplanet.RocksDBStore" Version="5.3.0-alpha.3" />
<PackageReference Include="Libplanet" Version="5.3.0-alpha.3" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.29.0" />
Expand Down
4 changes: 2 additions & 2 deletions Mimir/Mimir.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Lib9c" Version="1.17.2-dev.95968dfc2482cdaf21ad5fc71cf40b5f191b6d39" />
<PackageReference Include="Libplanet" Version="5.2.2" />
<PackageReference Include="Lib9c" Version="1.18.0" />
<PackageReference Include="Libplanet" Version="5.3.0-alpha.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.7" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.3.1" />
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />
Expand Down

0 comments on commit 40d01ce

Please sign in to comment.