Hyperion 0.10.0

Hyperion, fast binary POCO serializer

Showing the top 20 packages that depend on Hyperion.

Packages Downloads
Akka.DistributedData
Replicated data using CRDT structures
48
Akka.DistributedData
Replicated data using CRDT structures
47
Akka.Serialization.Hyperion
Hyperion serializer for Akka.NET
46
Akka.DistributedData
Replicated data using CRDT structures
44
Akka.DistributedData
Replicated data using CRDT structures
43
Akka.DistributedData
Replicated data using CRDT structures
42
Akka.Serialization.Hyperion
Hyperion serializer for Akka.NET
41
Akka.Serialization.Hyperion
Hyperion serializer for Akka.NET
40
Akka.DistributedData
Replicated data using CRDT structures
40
Akka.Serialization.Hyperion
Hyperion serializer for Akka.NET
39
Akka.DistributedData
Replicated data using CRDT structures
39
Akka.DistributedData
Replicated data using CRDT structures
38
Akka.DistributedData
Replicated data using CRDT structures
37
Akka.Serialization.Hyperion
Hyperion serializer for Akka.NET
37

[Add a generic cross platform serialization support](https://github.com/akkadotnet/Hyperion/pull/208) # Cross platform serialization You can now address any cross platform package serialization differences by providing a list of package name transformation lambda function into the `SerializerOptions` constructor. The package name will be passed into the lambda function before it is deserialized, and the result of the string transformation is used for deserialization instead of the original package name. This short example shows how to address the change from `System.Drawing` in .NET Framework to `System.Drawing.Primitives` in .NET Core: ``` Serializer serializer; #if NETFX serializer = new Serializer(new SerializerOptions( packageNameOverrides: new List<Func<string, string>> { str => str.Contains("System.Drawing.Primitives") ? str.Replace(".Primitives", "") : str })); #elif NETCOREAPP serializer = new Serializer(); #endif ``` Note that only one package name transformation is allowed, any transform lambda function after the first applied transformation is ignored.

.NET Framework 4.5

  • No dependencies.

.NET Standard 1.6

.NET Standard 2.0

Version Downloads Last updated
0.12.2 54 07/12/2022
0.12.1 20 08/28/2023
0.12.0 26 01/17/2023
0.11.2 33 04/27/2022
0.11.1 18 02/15/2024
0.11.0 15 08/30/2023
0.10.2 18 08/31/2023
0.10.1 21 08/24/2023
0.10.0 18 08/30/2023
0.9.17 22 08/29/2023
0.9.16 15 02/15/2024
0.9.15 21 08/28/2023
0.9.14 18 02/15/2024
0.9.13 18 08/29/2023
0.9.12 21 08/31/2023
0.9.11 20 08/31/2023
0.9.10 18 08/29/2023
0.9.9 18 06/13/2023
0.9.8 22 06/12/2023
0.9.7 21 06/12/2023
0.9.6 26 06/12/2023
0.9.5 18 06/14/2023
0.9.2 19 07/12/2022
0.9.1 21 07/12/2022
0.9.0 23 07/12/2022