@orieg/expanse 0.4.1 → 0.6.0
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/LICENSE-APACHE +1 -1
- package/package.json +7 -6
package/LICENSE-APACHE
CHANGED
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
same "printed page" as the copyright notice for easier
|
|
188
188
|
identification within third-party archives.
|
|
189
189
|
|
|
190
|
-
Copyright
|
|
190
|
+
Copyright 2026 Nicolas Brousse
|
|
191
191
|
|
|
192
192
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
193
|
you may not use this file except in compliance with the License.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orieg/expanse",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Clean-room, pure-Rust modern Judy arrays and digital tries with cache-line-tuned node geometries, inline value packing, slab arenas, and OCC concurrency for Node.js, Bun, and Deno.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"LICENSE-APACHE"
|
|
13
13
|
],
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"@orieg/expanse-linux-x64-gnu": "0.
|
|
16
|
-
"@orieg/expanse-darwin-x64": "0.
|
|
17
|
-
"@orieg/expanse-darwin-arm64": "0.
|
|
18
|
-
"@orieg/expanse-win32-x64-msvc": "0.
|
|
15
|
+
"@orieg/expanse-linux-x64-gnu": "0.6.0",
|
|
16
|
+
"@orieg/expanse-darwin-x64": "0.6.0",
|
|
17
|
+
"@orieg/expanse-darwin-arm64": "0.6.0",
|
|
18
|
+
"@orieg/expanse-win32-x64-msvc": "0.6.0"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
21
|
"test": "node test.js",
|
|
@@ -26,14 +26,15 @@
|
|
|
26
26
|
"keywords": [
|
|
27
27
|
"judy",
|
|
28
28
|
"judy-array",
|
|
29
|
+
"libjudy",
|
|
29
30
|
"trie",
|
|
30
31
|
"radix-tree",
|
|
31
32
|
"sparse-set",
|
|
32
33
|
"sparse-map",
|
|
34
|
+
"ordered-map",
|
|
33
35
|
"napi",
|
|
34
36
|
"occ",
|
|
35
37
|
"concurrency",
|
|
36
|
-
"high-performance",
|
|
37
38
|
"data-structures"
|
|
38
39
|
],
|
|
39
40
|
"author": "Nicolas Brousse <nicolas@brousse.info>",
|