Skip to content

Commit 6ae4863

Browse files
committed
Add OpenBSD to CI (attempt 3)
1 parent e0e8908 commit 6ae4863

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v4
5050

51-
- name: Install Rust 1.91.1
52-
uses: dtolnay/rust-toolchain@1.91.1
51+
- name: Install Rust MSRV
52+
uses: dtolnay/rust-toolchain@1.90.0
5353
with:
5454
components: clippy
5555

@@ -360,7 +360,6 @@ jobs:
360360
release: "7.8"
361361
usesh: true
362362
prepare: |
363-
pkg_add -u
364363
pkg_add rust
365364
run: |
366365
cargo build --locked

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "celq"
33
description = "A CEL command-line query tool for JSON data"
44
version = "0.3.1"
55
edition = "2024"
6-
rust-version = "1.91"
6+
rust-version = "1.90"
77
authors = ["Ivan Carvalho <ivancarvalho@gatech.edu>"]
88
repository = "https://github.com/IvanIsCoding/celq"
99
license = "MIT OR Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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)
33

44
**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.
55

0 commit comments

Comments
 (0)