celq 0.4.0 → 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/README.md +3 -3
- package/package.json +8 -7
- package/package.json.cel +1 -0
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# celq
|
|
2
|
-
[](https://crates.io/crates/celq) [](https://docs.rs/celq) [](https://celq-playground.github.io/) [](https://crates.io/crates/celq) [](https://docs.rs/celq) [](https://celq-playground.github.io/) [](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
|
|
3
3
|
|
|
4
4
|
**celq** is a command-line tool for evaluating [Common Expression Language (CEL)](https://cel.dev/) expressions. It processes JSON input, performs computations, and outputs results. Think of it as if [jq](https://jqlang.org/) supported CEL.
|
|
5
5
|
|
|
@@ -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.6.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,13 @@
|
|
|
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-
|
|
42
|
-
"@ivaniscoding/celq-
|
|
43
|
-
"@ivaniscoding/celq-windows-
|
|
38
|
+
"@ivaniscoding/celq-darwin-arm64": "0.6.0",
|
|
39
|
+
"@ivaniscoding/celq-darwin-x64": "0.6.0",
|
|
40
|
+
"@ivaniscoding/celq-linux-arm64": "0.6.0",
|
|
41
|
+
"@ivaniscoding/celq-linux-riscv64": "0.6.0",
|
|
42
|
+
"@ivaniscoding/celq-linux-x64": "0.6.0",
|
|
43
|
+
"@ivaniscoding/celq-windows-arm64": "0.6.0",
|
|
44
|
+
"@ivaniscoding/celq-windows-x64": "0.6.0"
|
|
44
45
|
},
|
|
45
46
|
"publishConfig": {
|
|
46
47
|
"access": "public",
|
|
@@ -57,5 +58,5 @@
|
|
|
57
58
|
"lint:fix": "eslint . --fix",
|
|
58
59
|
"typecheck": "tsc --noEmit"
|
|
59
60
|
},
|
|
60
|
-
"version": "0.
|
|
61
|
+
"version": "0.6.0"
|
|
61
62
|
}
|
package/package.json.cel
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"@ivaniscoding/celq-darwin-arm64": node_version,
|
|
36
36
|
"@ivaniscoding/celq-darwin-x64": node_version,
|
|
37
37
|
"@ivaniscoding/celq-linux-arm64": node_version,
|
|
38
|
+
"@ivaniscoding/celq-linux-riscv64": node_version,
|
|
38
39
|
"@ivaniscoding/celq-linux-x64": node_version,
|
|
39
40
|
"@ivaniscoding/celq-windows-arm64": node_version,
|
|
40
41
|
"@ivaniscoding/celq-windows-x64": node_version
|