13 releases (8 breaking)

0.9.0 Nov 4, 2024
0.8.1 Jul 29, 2024
0.7.1 Jun 14, 2024
0.6.1 Mar 20, 2024
0.1.1 Dec 20, 2020

#33 in Programming languages

Download history 291/week @ 2024-09-21 595/week @ 2024-09-28 566/week @ 2024-10-05 664/week @ 2024-10-12 618/week @ 2024-10-19 479/week @ 2024-10-26 949/week @ 2024-11-02 340/week @ 2024-11-09 439/week @ 2024-11-16 333/week @ 2024-11-23 349/week @ 2024-11-30 416/week @ 2024-12-07 384/week @ 2024-12-14 64/week @ 2024-12-21 125/week @ 2024-12-28 492/week @ 2025-01-04

1,139 downloads per month
Used in 5 crates (4 directly)

MIT license

195KB
4.5K SLoC

CEL Interpreter

Rust

The Common Expression Language (CEL) is a non-Turing complete language designed for simplicity, speed, safety, and portability. CEL's C-like syntax looks nearly identical to equivalent expressions in C++, Go, Java, and TypeScript. CEL is ideal for lightweight expression evaluation when a fully sandboxed scripting language is too resource intensive.

// Check whether a resource name starts with a group name.
resource.name.startsWith("/groups/" + auth.claims.group)
// Determine whether the request is in the permitted time window.
request.time - resource.age < duration("24h")
// Check whether all resource names in a list match a given filter.
auth.claims.email_verified && resources.all(r, r.startsWith(auth.claims.email))

Getting Started

This project includes a parser and an interpreter which means that it can be used to evaluate CEL-expressions. The library aims to be very simple to use, while still being fast, safe, and customizable.

use cel_interpreter::{Context, Program};

fn main() {
    // Compile a CEL program
    let program = Program::compile("add(2, 3)").unwrap();

    // Add any variables or functions that the program will need
    let mut context = Context::default();
    context.add_function("add", |a: i64, b: i64| a + b);

    // Run the program
    let value = program.execute(&context).unwrap();
    assert_eq!(value, 5.into());
}

Examples

Check out these other examples to learn how to use this library:

  • Simple - A simple example of how to use the library.
  • Variables - Passing variables and using them in your program.
  • Functions - Defining and using custom functions in your program.
  • Concurrent Execution - Executing the same program concurrently.

Dependencies

~3.5–7.5MB
~126K SLoC