celq 0.3.2__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.2.data → celq-0.3.3.data}/scripts/celq +0 -0
- {celq-0.3.2.dist-info → celq-0.3.3.dist-info}/METADATA +44 -3
- celq-0.3.3.dist-info/RECORD +6 -0
- celq-0.3.2.dist-info/RECORD +0 -6
- {celq-0.3.2.dist-info → celq-0.3.3.dist-info}/WHEEL +0 -0
- {celq-0.3.2.dist-info → celq-0.3.3.dist-info}/licenses/LICENSE-APACHE +0 -0
- {celq-0.3.2.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
|
|
@@ -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
|
|
|
@@ -101,6 +101,14 @@ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, yo
|
|
|
101
101
|
choco install celq
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
+
### WinGet (Windows)
|
|
105
|
+
|
|
106
|
+
If you are a [WinGet](https://learn.microsoft.com/windows/package-manager/winget/) user on Windows, you can install `celq` with:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
winget install IvanIsCoding.celq
|
|
110
|
+
```
|
|
111
|
+
|
|
104
112
|
### Cargo
|
|
105
113
|
|
|
106
114
|
#### Installing From Source
|
|
@@ -179,7 +187,11 @@ su root -c 'install -m 755 celq /usr/local/bin/'
|
|
|
179
187
|
|
|
180
188
|
### OpenBSD
|
|
181
189
|
|
|
182
|
-
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.
|
|
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.
|
|
183
195
|
|
|
184
196
|
### NPM (Node.js/JavaScript)
|
|
185
197
|
|
|
@@ -208,6 +220,35 @@ If you have [uv](https://github.com/astral-sh/uv) installed, `celq` can be used
|
|
|
208
220
|
uvx celq -n '"Hello World"'
|
|
209
221
|
```
|
|
210
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
|
+
|
|
211
252
|
## Limitations
|
|
212
253
|
|
|
213
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.2.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
celq-0.3.2.data/scripts/celq,sha256=kUz6FUV9PL81_m8KOChV40lN_H5xj89nie0lPWNfU70,5326656
|
|
2
|
-
celq-0.3.2.dist-info/METADATA,sha256=reO5ueLxQ8JohDroRMmdA1XTwHgrqzwjURTMctIj3Dc,11349
|
|
3
|
-
celq-0.3.2.dist-info/WHEEL,sha256=yylKWcexKBlaNV_z8iGyahATbhal1pF7thA651eIJss,102
|
|
4
|
-
celq-0.3.2.dist-info/licenses/LICENSE-APACHE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
5
|
-
celq-0.3.2.dist-info/licenses/LICENSE-MIT,sha256=xz4_I5smf7P5mKBTXiUJIOHlIOw7W1Z4lHmPdvVrm7k,1070
|
|
6
|
-
celq-0.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|