@ivaniscoding/celq-linux-arm64 0.3.1 → 0.3.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/README.md +12 -8
- package/bin/celq +0 -0
- package/package.json +1 -1
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
|
|
|
@@ -63,21 +63,21 @@ If you are a [macOS Homebrew](https://brew.sh/) user, then you can install celq
|
|
|
63
63
|
brew install get-celq/tap/celq
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
###
|
|
66
|
+
### Scoop (Windows)
|
|
67
67
|
|
|
68
|
-
If you are a [
|
|
68
|
+
If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
|
-
|
|
71
|
+
scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
|
|
72
|
+
scoop install get-celq/celq
|
|
72
73
|
```
|
|
73
74
|
|
|
74
|
-
###
|
|
75
|
+
### Chocolatey (Windows)
|
|
75
76
|
|
|
76
|
-
If you are a [
|
|
77
|
+
If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
|
|
77
78
|
|
|
78
79
|
```bash
|
|
79
|
-
|
|
80
|
-
scoop install get-celq/celq
|
|
80
|
+
choco install celq
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
### Cargo
|
|
@@ -156,6 +156,10 @@ su root -c 'install -m 755 celq /usr/local/bin/'
|
|
|
156
156
|
|
|
157
157
|
`celq` can also be installed from source following the [Cargo](#cargo) section. We strive to always compile with the Rust version provided in the ports tree.
|
|
158
158
|
|
|
159
|
+
### OpenBSD
|
|
160
|
+
|
|
161
|
+
OpenBSD builds are tested in CI using the latest stable release. `celq` strives to always compile with the Rust version provided in the ports tree. Refer to the [Cargo](#cargo) section for instructions.
|
|
162
|
+
|
|
159
163
|
### NPM (Node.js/JavaScript)
|
|
160
164
|
|
|
161
165
|
`celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
|
package/bin/celq
CHANGED
|
Binary file
|
package/package.json
CHANGED