celq 0.3.1__tar.gz → 0.3.2__tar.gz

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 (29) hide show
  1. {celq-0.3.1 → celq-0.3.2}/CHANGELOG.md +6 -0
  2. {celq-0.3.1 → celq-0.3.2}/Cargo.lock +1 -1
  3. {celq-0.3.1 → celq-0.3.2}/Cargo.toml +2 -2
  4. {celq-0.3.1 → celq-0.3.2}/PKG-INFO +13 -9
  5. {celq-0.3.1 → celq-0.3.2}/README.md +12 -8
  6. {celq-0.3.1 → celq-0.3.2}/docs/installation_guide.md +12 -8
  7. {celq-0.3.1 → celq-0.3.2}/pypi/README.md +12 -8
  8. {celq-0.3.1 → celq-0.3.2}/LICENSE-APACHE +0 -0
  9. {celq-0.3.1 → celq-0.3.2}/LICENSE-MIT +0 -0
  10. {celq-0.3.1 → celq-0.3.2}/docs/comparison_with_other_tools.md +0 -0
  11. {celq-0.3.1 → celq-0.3.2}/docs/manual.md +0 -0
  12. {celq-0.3.1 → celq-0.3.2}/pypi/LICENSE-APACHE +0 -0
  13. {celq-0.3.1 → celq-0.3.2}/pypi/LICENSE-MIT +0 -0
  14. {celq-0.3.1 → celq-0.3.2}/pyproject.toml +0 -0
  15. {celq-0.3.1 → celq-0.3.2}/src/args2cel.rs +0 -0
  16. {celq-0.3.1 → celq-0.3.2}/src/args2cel_test.rs +0 -0
  17. {celq-0.3.1 → celq-0.3.2}/src/cli.rs +0 -0
  18. {celq-0.3.1 → celq-0.3.2}/src/documentation.rs +0 -0
  19. {celq-0.3.1 → celq-0.3.2}/src/gron.rs +0 -0
  20. {celq-0.3.1 → celq-0.3.2}/src/gron_test.rs +0 -0
  21. {celq-0.3.1 → celq-0.3.2}/src/input_handler.rs +0 -0
  22. {celq-0.3.1 → celq-0.3.2}/src/input_handler_test.rs +0 -0
  23. {celq-0.3.1 → celq-0.3.2}/src/json2cel.rs +0 -0
  24. {celq-0.3.1 → celq-0.3.2}/src/json2cel_test.rs +0 -0
  25. {celq-0.3.1 → celq-0.3.2}/src/main.rs +0 -0
  26. {celq-0.3.1 → celq-0.3.2}/src/slice_extension.rs +0 -0
  27. {celq-0.3.1 → celq-0.3.2}/src/ungron.rs +0 -0
  28. {celq-0.3.1 → celq-0.3.2}/src/ungron_test.rs +0 -0
  29. {celq-0.3.1 → celq-0.3.2}/tests/golden.rs +0 -0
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ [v0.3.2](https://github.com/IvanIsCoding/celq/releases/tag/v0.3.2) - 2026-01-31
5
+
6
+ ### Miscellaneous
7
+
8
+ * Downgraded the MSRV to Rust 1.90
9
+
4
10
  [v0.3.1](https://github.com/IvanIsCoding/celq/releases/tag/v0.3.1) - 2026-01-27
5
11
 
6
12
  ### Added
@@ -201,7 +201,7 @@ dependencies = [
201
201
 
202
202
  [[package]]
203
203
  name = "celq"
204
- version = "0.3.1"
204
+ version = "0.3.2"
205
205
  dependencies = [
206
206
  "anyhow",
207
207
  "cel",
@@ -1,9 +1,9 @@
1
1
  [package]
2
2
  name = "celq"
3
3
  description = "A CEL command-line query tool for JSON data"
4
- version = "0.3.1"
4
+ version = "0.3.2"
5
5
  edition = "2024"
6
- rust-version = "1.91"
6
+ rust-version = "1.90"
7
7
  authors = ["Ivan Carvalho <ivancarvalho@gatech.edu>"]
8
8
  repository = "https://github.com/IvanIsCoding/celq"
9
9
  license = "MIT OR Apache-2.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: celq
3
- Version: 0.3.1
3
+ Version: 0.3.2
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
- [![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)
23
+ [![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)
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
 
@@ -84,21 +84,21 @@ 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
- ### Chocolatey (Windows)
87
+ ### Scoop (Windows)
88
88
 
89
- If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
89
+ If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
90
90
 
91
91
  ```bash
92
- choco install celq
92
+ scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
93
+ scoop install get-celq/celq
93
94
  ```
94
95
 
95
- ### Scoop (Windows)
96
+ ### Chocolatey (Windows)
96
97
 
97
- If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
98
+ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
98
99
 
99
100
  ```bash
100
- scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
101
- scoop install get-celq/celq
101
+ choco install celq
102
102
  ```
103
103
 
104
104
  ### Cargo
@@ -177,6 +177,10 @@ su root -c 'install -m 755 celq /usr/local/bin/'
177
177
 
178
178
  `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
179
 
180
+ ### OpenBSD
181
+
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.
183
+
180
184
  ### NPM (Node.js/JavaScript)
181
185
 
182
186
  `celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
@@ -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
 
@@ -63,21 +63,21 @@ 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
- ### Chocolatey (Windows)
66
+ ### Scoop (Windows)
67
67
 
68
- If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
68
+ If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
69
69
 
70
70
  ```bash
71
- choco install celq
71
+ scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
72
+ scoop install get-celq/celq
72
73
  ```
73
74
 
74
- ### Scoop (Windows)
75
+ ### Chocolatey (Windows)
75
76
 
76
- If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
77
+ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
77
78
 
78
79
  ```bash
79
- scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
80
- scoop install get-celq/celq
80
+ choco install celq
81
81
  ```
82
82
 
83
83
  ### Cargo
@@ -156,6 +156,10 @@ su root -c 'install -m 755 celq /usr/local/bin/'
156
156
 
157
157
  `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
158
 
159
+ ### OpenBSD
160
+
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.
162
+
159
163
  ### NPM (Node.js/JavaScript)
160
164
 
161
165
  `celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
@@ -49,23 +49,23 @@ If you are a [macOS Homebrew](https://brew.sh/) user, then you can install celq
49
49
  brew install get-celq/tap/celq
50
50
  ```
51
51
 
52
- The formula also works for [Linuxbrew](https://docs.brew.sh/Homebrew-on-Linux), but it will install from source instead of using pre-built binaries.
52
+ The formula also works for [Linuxbrew](https://docs.brew.sh/Homebrew-on-Linux).
53
53
 
54
- ### Chocolatey (Windows)
54
+ ### Scoop (Windows)
55
55
 
56
- If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
56
+ If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
57
57
 
58
58
  ```bash
59
- choco install celq
59
+ scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
60
+ scoop install get-celq/celq
60
61
  ```
61
62
 
62
- ### Scoop (Windows)
63
+ ### Chocolatey (Windows)
63
64
 
64
- If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
65
+ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
65
66
 
66
67
  ```bash
67
- scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
68
- scoop install get-celq/celq
68
+ choco install celq
69
69
  ```
70
70
 
71
71
  ### Cargo
@@ -166,6 +166,10 @@ su root -c 'install -m 755 celq /usr/local/bin/'
166
166
 
167
167
  `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.
168
168
 
169
+ ### OpenBSD
170
+
171
+ 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.
172
+
169
173
  ### NPM (Node.js/JavaScript)
170
174
 
171
175
  `celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
@@ -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
 
@@ -63,21 +63,21 @@ 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
- ### Chocolatey (Windows)
66
+ ### Scoop (Windows)
67
67
 
68
- If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
68
+ If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
69
69
 
70
70
  ```bash
71
- choco install celq
71
+ scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
72
+ scoop install get-celq/celq
72
73
  ```
73
74
 
74
- ### Scoop (Windows)
75
+ ### Chocolatey (Windows)
75
76
 
76
- If you are a [Scoop](https://scoop.sh/) user on Windows, you can install `celq` with:
77
+ If you are a [Chocolatey](https://community.chocolatey.org/) user on Windows, you can install `celq` with:
77
78
 
78
79
  ```bash
79
- scoop bucket add get-celq https://github.com/get-celq/scoop-bucket
80
- scoop install get-celq/celq
80
+ choco install celq
81
81
  ```
82
82
 
83
83
  ### Cargo
@@ -156,6 +156,10 @@ su root -c 'install -m 755 celq /usr/local/bin/'
156
156
 
157
157
  `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
158
 
159
+ ### OpenBSD
160
+
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.
162
+
159
163
  ### NPM (Node.js/JavaScript)
160
164
 
161
165
  `celq` is packaged for [NPM](https://www.npmjs.com/package/celq). Node.js users can install celq in their project with:
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes