com.wallstop-studios.dxmessaging 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,10 +11,10 @@ Game engine agnostic robust, synchronous pub/sub C# messaging solution, mostly g
11
11
  4. Resolve the latest `DxMessaging`
12
12
 
13
13
  # Dependencies
14
- This project has a dependency on my [`Unity Helpers`](https://github.com/wallstop/unity-helpers) project, which contains the System.Runtime.CompilerServices.Unsafe.dll, which is used for some speed hacks in DxMessaging directly. Unity Helpers bundles a few (small) dependencies, including protobuf. If you don't want these dependencies, or if they conflict in some way, you can either include a copy of the System.Runtime.CompilerServices.Unsafe.dll yourself without relying on UnityHelpers, or manually download and include the Unity Helpers project and delete anything that conflicts with your project.
14
+ This project has a dependency on my [`Unity Helpers`](https://github.com/wallstop/unity-helpers) project, which contains the `System.Runtime.CompilerServices.Unsafe.dll`, which is used for some speed hacks in DxMessaging directly. Unity Helpers bundles a few (small) dependencies, including protobuf. If you don't want these dependencies, or if they conflict in some way, you can either include a copy of the `System.Runtime.CompilerServices.Unsafe.dll` yourself without relying on UnityHelpers, or manually download and include the Unity Helpers project and delete anything that conflicts with your project. Or, manually download this project without UnityHelpers. The choice is yours.
15
15
 
16
16
  # Benchmarks
17
- DxMessaging is currently a bit slower (2-4x) than Unity's built in messaging solution (when running in Unity). [Source](./Tests/Runtime/Core/PerformanceTests.cs).
17
+ DxMessaging is currently a bit slower (2-3x) than Unity's built in messaging solution (when running in Unity). [Source](./Tests/Runtime/Benchmarks/PerformanceTests.cs).
18
18
  | Message Tech | Operations / Second |
19
19
  | ------------ | ------------------- |
20
20
  | Unity | 1,908,539 |
@@ -1,22 +1,24 @@
1
- {
2
- "name": "WallstopStudios.DxMessaging.Tests.Runtime",
3
- "rootNamespace": "DxMessaging.Tests",
4
- "references": [
5
- "UnityEngine.TestRunner",
6
- "UnityEditor.TestRunner",
7
- "WallstopStudios.DxMessaging"
8
- ],
9
- "includePlatforms": [],
10
- "excludePlatforms": [],
11
- "allowUnsafeCode": false,
12
- "overrideReferences": true,
13
- "precompiledReferences": [
14
- "nunit.framework.dll"
15
- ],
16
- "autoReferenced": false,
17
- "defineConstraints": [
18
- "UNITY_INCLUDE_TESTS"
19
- ],
20
- "versionDefines": [],
21
- "noEngineReferences": false
1
+ {
2
+ "name": "WallstopStudios.DxMessaging.Tests.Runtime",
3
+ "rootNamespace": "DxMessaging.Tests",
4
+ "references": [
5
+ "UnityEngine.TestRunner",
6
+ "UnityEditor.TestRunner",
7
+ "WallstopStudios.DxMessaging"
8
+ ],
9
+ "includePlatforms": [
10
+ "Editor"
11
+ ],
12
+ "excludePlatforms": [],
13
+ "allowUnsafeCode": false,
14
+ "overrideReferences": true,
15
+ "precompiledReferences": [
16
+ "nunit.framework.dll"
17
+ ],
18
+ "autoReferenced": false,
19
+ "defineConstraints": [
20
+ "UNITY_INCLUDE_TESTS"
21
+ ],
22
+ "versionDefines": [],
23
+ "noEngineReferences": false
22
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.dxmessaging",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "displayName": "DxMessaging",
5
5
  "description": "Synchronous Event Bus for Unity",
6
6
  "unity": "2021.1",