Hexarc.Borsh
0.0.10
See the version list below for details.
dotnet add package Hexarc.Borsh --version 0.0.10
NuGet\Install-Package Hexarc.Borsh -Version 0.0.10
<PackageReference Include="Hexarc.Borsh" Version="0.0.10" />
paket add Hexarc.Borsh --version 0.0.10
#r "nuget: Hexarc.Borsh, 0.0.10"
// Install Hexarc.Borsh as a Cake Addin #addin nuget:?package=Hexarc.Borsh&version=0.0.10 // Install Hexarc.Borsh as a Cake Tool #tool nuget:?package=Hexarc.Borsh&version=0.0.10
Hexarc Borsh
Hexarc.Borsh is .NET implementation of the Binary Object Representation Serializer for Hashing format.
Current status: 🚧 Under development 🚧
Getting started
Install the package with the NuGet
CLI:
dotnet add package Hexarc.Borsh
Reference the Hexarc.Borsh
namespace in your code:
using Hexarc.Borsh;
Serialize and deserialize .NET objects via the BorshSerializer
class:
public class Point
{
public Int32 X { get; init; }
public Int32 Y { get; init; }
public Int32 Z { get; init; }
}
var point = new Point() { X = 5, Y = 10, Z = 20 };
var raw = BorshSerializer.Serialize(point);
var restored = BorshSerializer.Deserialize(raw);
Features
Limited count of the .NET types are currently supported:
Byte
,SByte
,Boolean
,Int16
,UInt16
,Int32
,UInt32
,Int64
,UInt64
Single
,Double
Nullable<T>
Enum
String
- Arrays as
T[]
HashSet<T>
Hexarc.Borsh.Option<T>
- POCO like user defined classes
All other types are not supported at the moment but already planned.
Another important notice that Borsh is mostly designed to support the Rust
type system. So null
reference values are not supported in .NET implementation.
Please use the special Hexarc.Borsh.Option<T>
type instead of .NET nullable reference types:
So this example:
public class PersonDetails
{
public String? FirstName { get; init; }
public String? LastName { get; init; }
}
should be rewritten as:
public class PersonDetails
{
public Option<String> FirstName { get; init; }
public Option<String> LastName { get; init; }
}
Acknowledgments
Built with JetBrains tools for Open Source projects.
License
MIT © Max Koverdyaev
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- FastMember (>= 1.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.0 | 1,013 | 12/4/2022 |
2.0.1 | 363 | 11/18/2022 |
2.0.0 | 374 | 11/12/2022 |
1.3.1 | 84,238 | 8/31/2022 |
1.3.0 | 10,916 | 8/29/2022 |
1.2.2 | 408 | 8/28/2022 |
1.2.1 | 414 | 8/28/2022 |
1.2.0 | 415 | 8/26/2022 |
1.1.2 | 433 | 8/6/2022 |
1.1.1 | 3,721 | 7/15/2022 |
1.1.0 | 455 | 7/15/2022 |
1.0.0 | 5,773 | 2/26/2022 |
0.6.0 | 467 | 2/25/2022 |
0.5.0 | 466 | 2/24/2022 |
0.4.0 | 482 | 2/23/2022 |
0.3.0 | 456 | 2/22/2022 |
0.2.0 | 447 | 2/21/2022 |
0.1.0 | 445 | 2/20/2022 |
0.0.15 | 445 | 2/19/2022 |
0.0.14 | 458 | 2/18/2022 |
0.0.13 | 471 | 2/18/2022 |
0.0.12 | 463 | 2/17/2022 |
0.0.11 | 438 | 2/17/2022 |
0.0.10 | 410 | 2/16/2022 |
0.0.9 | 438 | 2/16/2022 |
0.0.8 | 434 | 2/16/2022 |
0.0.7 | 423 | 2/16/2022 |
0.0.6 | 445 | 2/16/2022 |
0.0.5 | 448 | 2/14/2022 |
0.0.4 | 432 | 2/10/2022 |
0.0.3 | 433 | 2/10/2022 |
0.0.2 | 449 | 2/9/2022 |
0.0.1 | 452 | 2/6/2022 |