@ivaniscoding/celq-linux-arm64 0.3.2 → 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.
- package/README.md +43 -2
- package/bin/celq +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|
|
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
|
|
|
@@ -80,6 +80,14 @@ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, yo
|
|
|
80
80
|
choco install celq
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
+
### WinGet (Windows)
|
|
84
|
+
|
|
85
|
+
If you are a [WinGet](https://learn.microsoft.com/windows/package-manager/winget/) user on Windows, you can install `celq` with:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
winget install IvanIsCoding.celq
|
|
89
|
+
```
|
|
90
|
+
|
|
83
91
|
### Cargo
|
|
84
92
|
|
|
85
93
|
#### Installing From Source
|
|
@@ -158,7 +166,11 @@ su root -c 'install -m 755 celq /usr/local/bin/'
|
|
|
158
166
|
|
|
159
167
|
### OpenBSD
|
|
160
168
|
|
|
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.
|
|
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.
|
|
162
174
|
|
|
163
175
|
### NPM (Node.js/JavaScript)
|
|
164
176
|
|
|
@@ -187,6 +199,35 @@ If you have [uv](https://github.com/astral-sh/uv) installed, `celq` can be used
|
|
|
187
199
|
uvx celq -n '"Hello World"'
|
|
188
200
|
```
|
|
189
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
|
+
|
|
190
231
|
## Limitations
|
|
191
232
|
|
|
192
233
|
### Eager JSON Parsing
|
package/bin/celq
CHANGED
|
Binary file
|
package/package.json
CHANGED