@ivaniscoding/celq-linux-arm64 0.2.0 → 0.3.0

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 (3) hide show
  1. package/README.md +5 -4
  2. package/bin/celq +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -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.89](https://img.shields.io/badge/rustc-1.89+-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.91](https://img.shields.io/badge/rustc-1.91+-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
 
@@ -165,12 +165,13 @@ See the [installation guide](https://docs.rs/celq/latest/celq/installation_guide
165
165
  FreeBSD builds are tested in [Cirrus CI](https://cirrus-ci.org/) and cross-compiled with [Zig](https://github.com/rust-cross/cargo-zigbuild). Although `celq` is not yet in the ports tree, it does publish pre-built binaries:
166
166
 
167
167
  ```bash
168
- VERSION=v0.2.0
168
+ VERSION=v0.3.0
169
169
  RELEASE_URL=https://github.com/IvanIsCoding/celq/releases/download/${VERSION}
170
+ PLATFORM=x86_64 # or aarch64
170
171
 
171
- fetch ${RELEASE_URL}/celq-freebsd-x86_64.tar.gz
172
+ fetch ${RELEASE_URL}/celq-freebsd-${PLATFORM}.tar.gz
172
173
 
173
- tar xzf celq-freebsd-x86_64.tar.gz
174
+ tar xzf celq-freebsd-${PLATFORM}.tar.gz
174
175
  su root -c 'install -m 755 celq /usr/local/bin/'
175
176
  ```
176
177
 
package/bin/celq CHANGED
Binary file
package/package.json CHANGED
@@ -21,5 +21,5 @@
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/IvanIsCoding/celq.git"
23
23
  },
24
- "version": "0.2.0"
24
+ "version": "0.3.0"
25
25
  }