fastbloom 0.1.0 → 0.1.2
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/npm/darwin-x64/fastbloom.darwin-x64.node +0 -0
- package/npm/linux-x64-gnu/fastbloom.linux-x64-gnu.node +0 -0
- package/npm/linux-x64-musl/fastbloom.linux-x64-musl.node +0 -0
- package/npm/win32-x64-msvc/fastbloom.win32-x64-msvc.node +0 -0
- package/package.json +12 -3
- package/fastbloom.linux-x64-gnu.node +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastbloom",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "High performance Bloom Filter implemented in Rust using fastbloom crate",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "napi build --platform --release",
|
|
8
|
+
"artifacts": "napi artifacts",
|
|
8
9
|
"test": "node test.js"
|
|
9
10
|
},
|
|
10
|
-
"
|
|
11
|
+
"devDependencies": {
|
|
11
12
|
"@napi-rs/cli": "^2.18.0"
|
|
12
13
|
},
|
|
13
14
|
"files": [
|
|
14
15
|
"index.js",
|
|
15
16
|
"index.d.ts",
|
|
16
|
-
"
|
|
17
|
+
"npm"
|
|
17
18
|
],
|
|
18
19
|
"napi": {
|
|
19
20
|
"name": "fastbloom",
|
|
@@ -26,5 +27,13 @@
|
|
|
26
27
|
"aarch64-pc-windows-msvc"
|
|
27
28
|
]
|
|
28
29
|
}
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/mradigen/fastbloom.git"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"provenance": true
|
|
29
38
|
}
|
|
30
39
|
}
|
|
Binary file
|