celq 0.4.0 → 0.5.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/README.md +2 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -149,10 +149,10 @@ See the [installation guide](https://docs.rs/celq/latest/celq/installation_guide
|
|
|
149
149
|
|
|
150
150
|
### FreeBSD
|
|
151
151
|
|
|
152
|
-
FreeBSD builds are tested
|
|
152
|
+
FreeBSD builds are tested with [freebsd-vm](https://github.com/vmactions/freebsd-vm) and cross-compiled with [Zig](https://github.com/rust-cross/cargo-zigbuild). Although `celq` is not yet in the ports tree, it does publish pre-built binaries:
|
|
153
153
|
|
|
154
154
|
```bash
|
|
155
|
-
VERSION=v0.
|
|
155
|
+
VERSION=v0.5.0
|
|
156
156
|
RELEASE_URL=https://github.com/IvanIsCoding/celq/releases/download/${VERSION}
|
|
157
157
|
PLATFORM=x86_64 # or aarch64
|
|
158
158
|
|
package/package.json
CHANGED
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"license": "MIT OR Apache-2.0",
|
|
36
36
|
"name": "celq",
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@ivaniscoding/celq-darwin-arm64": "0.
|
|
39
|
-
"@ivaniscoding/celq-darwin-x64": "0.
|
|
40
|
-
"@ivaniscoding/celq-linux-arm64": "0.
|
|
41
|
-
"@ivaniscoding/celq-linux-x64": "0.
|
|
42
|
-
"@ivaniscoding/celq-windows-arm64": "0.
|
|
43
|
-
"@ivaniscoding/celq-windows-x64": "0.
|
|
38
|
+
"@ivaniscoding/celq-darwin-arm64": "0.5.0",
|
|
39
|
+
"@ivaniscoding/celq-darwin-x64": "0.5.0",
|
|
40
|
+
"@ivaniscoding/celq-linux-arm64": "0.5.0",
|
|
41
|
+
"@ivaniscoding/celq-linux-x64": "0.5.0",
|
|
42
|
+
"@ivaniscoding/celq-windows-arm64": "0.5.0",
|
|
43
|
+
"@ivaniscoding/celq-windows-x64": "0.5.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"lint:fix": "eslint . --fix",
|
|
58
58
|
"typecheck": "tsc --noEmit"
|
|
59
59
|
},
|
|
60
|
-
"version": "0.
|
|
60
|
+
"version": "0.5.0"
|
|
61
61
|
}
|