@ivaniscoding/celq-linux-arm64 0.3.1 → 0.3.3

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.
Files changed (3) hide show
  1. package/README.md +51 -6
  2. package/bin/celq +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # celq
2
- [![Crates.io](https://img.shields.io/crates/v/celq.svg)](https://crates.io/crates/celq) [![Documentation](https://docs.rs/celq/badge.svg)](https://docs.rs/celq) [![Playground](https://img.shields.io/badge/playground-live-brightgreen)](https://celq-playground.github.io/) [![Minimum rustc 1.91](https://img.shields.io/badge/rustc-1.91+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
2
+ [![Crates.io](https://img.shields.io/crates/v/celq.svg)](https://crates.io/crates/celq) [![Documentation](https://docs.rs/celq/badge.svg)](https://docs.rs/celq) [![Playground](https://img.shields.io/badge/playground-live-brightgreen)](https://celq-playground.github.io/) [![Minimum rustc 1.90](https://img.shields.io/badge/rustc-1.90+-blue.svg)](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
 
@@ -19,7 +19,7 @@ celq -n --arg='fruit:string=apple' 'fruit.contains("a")'
19
19
  # Outputs: true
20
20
  ```
21
21
 
22
- Popular configuration formats such as JSON5, YAML, and TOML are supported. The closely related format NDJSON is also supported.
22
+ Popular configuration formats such as JSON5, YAML, TOML, and XML are supported. The closely related format NDJSON is also supported.
23
23
 
24
24
  For detailed usage examples and recipes, see the [manual](https://docs.rs/celq/latest/celq/).
25
25
 
@@ -63,6 +63,15 @@ 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
+ ### Scoop (Windows)
67
+
68
+ If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
69
+
70
+ ```bash
71
+ scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
72
+ scoop install get-celq/celq
73
+ ```
74
+
66
75
  ### Chocolatey (Windows)
67
76
 
68
77
  If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
@@ -71,13 +80,12 @@ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, yo
71
80
  choco install celq
72
81
  ```
73
82
 
74
- ### Scoop (Windows)
83
+ ### WinGet (Windows)
75
84
 
76
- If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
85
+ If you are a [WinGet](https://learn.microsoft.com/windows/package-manager/winget/) user on Windows, you can install `celq` with:
77
86
 
78
87
  ```bash
79
- scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
80
- scoop install get-celq/celq
88
+ winget install IvanIsCoding.celq
81
89
  ```
82
90
 
83
91
  ### Cargo
@@ -156,6 +164,14 @@ su root -c 'install -m 755 celq /usr/local/bin/'
156
164
 
157
165
  `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
166
 
167
+ ### OpenBSD
168
+
169
+ 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 installation instructions.
170
+
171
+ ### NetBSD
172
+
173
+ NetBSD builds are tested in CI against the latest stable release. `celq` aims to remain compatible with the Rust version provided by the NetBSD pkgsrc quarterly branch. See the [Cargo](#cargo) section for installation instructions.
174
+
159
175
  ### NPM (Node.js/JavaScript)
160
176
 
161
177
  `celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
@@ -183,6 +199,35 @@ If you have [uv](https://github.com/astral-sh/uv) installed, `celq` can be used
183
199
  uvx celq -n '"Hello World"'
184
200
  ```
185
201
 
202
+ ### Conda Forge
203
+
204
+ celq is available on [conda-forge](https://anaconda.org/channels/conda-forge/packages/celq/overview) and can be installed with `conda`, `mamba`, `micromamba`, and `pixi`:
205
+
206
+ ```bash
207
+ conda install -c conda-forge celq
208
+ ```
209
+
210
+ If you have [pixi](https://pixi.prefix.dev/latest/), you can run celq in a temporary environment with:
211
+
212
+ ```bash
213
+ pixi exec celq -n '"Hello World"'
214
+ ```
215
+
216
+ ### Mise
217
+
218
+ celq can be used with [mise](https://mise.jdx.dev/). To install celq, use the Conda back-end:
219
+
220
+ ```bash
221
+ mise use -g conda:celq
222
+ ```
223
+
224
+ Alternatively, add this to `mise.toml`:
225
+
226
+ ```toml
227
+ [tools]
228
+ "conda:celq" = "latest"
229
+ ```
230
+
186
231
  ## Limitations
187
232
 
188
233
  ### Eager JSON Parsing
package/bin/celq CHANGED
Binary file
package/package.json CHANGED
@@ -21,5 +21,5 @@
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/IvanIsCoding/celq.git"
23
23
  },
24
- "version": "0.3.1"
24
+ "version": "0.3.3"
25
25
  }