celq 0.3.1__py3-none-macosx_11_0_arm64.whl → 0.3.3__py3-none-macosx_11_0_arm64.whl
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.
- {celq-0.3.1.data → celq-0.3.3.data}/scripts/celq +0 -0
- {celq-0.3.1.dist-info → celq-0.3.3.dist-info}/METADATA +52 -7
- celq-0.3.3.dist-info/RECORD +6 -0
- celq-0.3.1.dist-info/RECORD +0 -6
- {celq-0.3.1.dist-info → celq-0.3.3.dist-info}/WHEEL +0 -0
- {celq-0.3.1.dist-info → celq-0.3.3.dist-info}/licenses/LICENSE-APACHE +0 -0
- {celq-0.3.1.dist-info → celq-0.3.3.dist-info}/licenses/LICENSE-MIT +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: celq
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Classifier: Intended Audience :: Developers
|
|
5
5
|
Classifier: Programming Language :: Rust
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
@@ -20,7 +20,7 @@ Project-URL: issues, https://github.com/IvanIsCoding/celq/issues
|
|
|
20
20
|
Project-URL: source, https://github.com/IvanIsCoding/celq
|
|
21
21
|
|
|
22
22
|
# celq
|
|
23
|
-
[](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)
|
|
24
24
|
|
|
25
25
|
**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.
|
|
26
26
|
|
|
@@ -40,7 +40,7 @@ celq -n --arg='fruit:string=apple' 'fruit.contains("a")'
|
|
|
40
40
|
# Outputs: true
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
Popular configuration formats such as JSON5, YAML, and
|
|
43
|
+
Popular configuration formats such as JSON5, YAML, TOML, and XML are supported. The closely related format NDJSON is also supported.
|
|
44
44
|
|
|
45
45
|
For detailed usage examples and recipes, see the [manual](https://docs.rs/celq/latest/celq/).
|
|
46
46
|
|
|
@@ -84,6 +84,15 @@ If you are a [macOS Homebrew](https://brew.sh/) user, then you can install celq
|
|
|
84
84
|
brew install get-celq/tap/celq
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
+
### Scoop (Windows)
|
|
88
|
+
|
|
89
|
+
If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
|
|
93
|
+
scoop install get-celq/celq
|
|
94
|
+
```
|
|
95
|
+
|
|
87
96
|
### Chocolatey (Windows)
|
|
88
97
|
|
|
89
98
|
If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
|
|
@@ -92,13 +101,12 @@ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, yo
|
|
|
92
101
|
choco install celq
|
|
93
102
|
```
|
|
94
103
|
|
|
95
|
-
###
|
|
104
|
+
### WinGet (Windows)
|
|
96
105
|
|
|
97
|
-
If you are a [
|
|
106
|
+
If you are a [WinGet](https://learn.microsoft.com/windows/package-manager/winget/) user on Windows, you can install `celq` with:
|
|
98
107
|
|
|
99
108
|
```bash
|
|
100
|
-
|
|
101
|
-
scoop install get-celq/celq
|
|
109
|
+
winget install IvanIsCoding.celq
|
|
102
110
|
```
|
|
103
111
|
|
|
104
112
|
### Cargo
|
|
@@ -177,6 +185,14 @@ su root -c 'install -m 755 celq /usr/local/bin/'
|
|
|
177
185
|
|
|
178
186
|
`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.
|
|
179
187
|
|
|
188
|
+
### OpenBSD
|
|
189
|
+
|
|
190
|
+
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.
|
|
191
|
+
|
|
192
|
+
### NetBSD
|
|
193
|
+
|
|
194
|
+
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.
|
|
195
|
+
|
|
180
196
|
### NPM (Node.js/JavaScript)
|
|
181
197
|
|
|
182
198
|
`celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
|
|
@@ -204,6 +220,35 @@ If you have [uv](https://github.com/astral-sh/uv) installed, `celq` can be used
|
|
|
204
220
|
uvx celq -n '"Hello World"'
|
|
205
221
|
```
|
|
206
222
|
|
|
223
|
+
### Conda Forge
|
|
224
|
+
|
|
225
|
+
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`:
|
|
226
|
+
|
|
227
|
+
```bash
|
|
228
|
+
conda install -c conda-forge celq
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
If you have [pixi](https://pixi.prefix.dev/latest/), you can run celq in a temporary environment with:
|
|
232
|
+
|
|
233
|
+
```bash
|
|
234
|
+
pixi exec celq -n '"Hello World"'
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
### Mise
|
|
238
|
+
|
|
239
|
+
celq can be used with [mise](https://mise.jdx.dev/). To install celq, use the Conda back-end:
|
|
240
|
+
|
|
241
|
+
```bash
|
|
242
|
+
mise use -g conda:celq
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
Alternatively, add this to `mise.toml`:
|
|
246
|
+
|
|
247
|
+
```toml
|
|
248
|
+
[tools]
|
|
249
|
+
"conda:celq" = "latest"
|
|
250
|
+
```
|
|
251
|
+
|
|
207
252
|
## Limitations
|
|
208
253
|
|
|
209
254
|
### Eager JSON Parsing
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
celq-0.3.3.data/scripts/celq,sha256=n5Zge93iOwqEKit6PJLnHw0-z6kqWX3kTirfw1kokGw,5402336
|
|
2
|
+
celq-0.3.3.dist-info/METADATA,sha256=e6zMnZY0T5YB6aj1WFSBGBXyuFb_kGZ5bJfie0fJ18w,12424
|
|
3
|
+
celq-0.3.3.dist-info/WHEEL,sha256=yylKWcexKBlaNV_z8iGyahATbhal1pF7thA651eIJss,102
|
|
4
|
+
celq-0.3.3.dist-info/licenses/LICENSE-APACHE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
5
|
+
celq-0.3.3.dist-info/licenses/LICENSE-MIT,sha256=xz4_I5smf7P5mKBTXiUJIOHlIOw7W1Z4lHmPdvVrm7k,1070
|
|
6
|
+
celq-0.3.3.dist-info/RECORD,,
|
celq-0.3.1.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
celq-0.3.1.data/scripts/celq,sha256=6i0Zcw_OeOp4NNMaNb1TqWSWbxuZrHbVjPDLMp0uVYc,5326656
|
|
2
|
-
celq-0.3.1.dist-info/METADATA,sha256=ubL6dMbcKclgAeTSnfFag2hOrIO3jtJ7vOTt01U3RJo,11132
|
|
3
|
-
celq-0.3.1.dist-info/WHEEL,sha256=yylKWcexKBlaNV_z8iGyahATbhal1pF7thA651eIJss,102
|
|
4
|
-
celq-0.3.1.dist-info/licenses/LICENSE-APACHE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
5
|
-
celq-0.3.1.dist-info/licenses/LICENSE-MIT,sha256=xz4_I5smf7P5mKBTXiUJIOHlIOw7W1Z4lHmPdvVrm7k,1070
|
|
6
|
-
celq-0.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|