@ivaniscoding/celq-linux-arm64 0.3.2 → 0.3.4
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 +45 -4
- 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
|
|
|
@@ -168,7 +180,7 @@ OpenBSD builds are tested in CI using the latest stable release. `celq` strives
|
|
|
168
180
|
npm install celq
|
|
169
181
|
```
|
|
170
182
|
|
|
171
|
-
This adds celq to `package.json` and makes it available for scripts. It
|
|
183
|
+
This adds celq to `package.json` and makes it available for scripts. It is also possible to run single commands with [npx](https://docs.npmjs.com/cli/v8/commands/npx):
|
|
172
184
|
|
|
173
185
|
```bash
|
|
174
186
|
npx celq -n '"Hello World"'
|
|
@@ -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
|
|
@@ -235,7 +276,7 @@ All the documentation in the manual has been hand-crafted. That was done to keep
|
|
|
235
276
|
|
|
236
277
|
## License
|
|
237
278
|
|
|
238
|
-
This project is dual-licensed under the MIT License and Apache 2.0 licenses.
|
|
279
|
+
This project is dual-licensed under the MIT License and Apache 2.0 licenses. See [LICENSE-MIT](LICENSE-MIT) and [LICENSE-APACHE](LICENSE-APACHE) files for details.
|
|
239
280
|
|
|
240
281
|
The `install.sh` published with each GitHub release and its template at the root of the repository (`template_install.sh`) are licensed independently. Those files are under the CC0-1.0 license. They are the original work of Casey Rodarmor from [just](https://github.com/casey/just) and have been adapted for celq.
|
|
241
282
|
|
package/bin/celq
CHANGED
|
Binary file
|
package/package.json
CHANGED