diff --git a/interpreter/Cargo.toml b/interpreter/Cargo.toml index c62c854..87a3c6d 100644 --- a/interpreter/Cargo.toml +++ b/interpreter/Cargo.toml @@ -2,14 +2,14 @@ name = "cel-interpreter" description = "An interpreter for the Common Expression Language (CEL)" repository = "https://github.com/clarkmcc/cel-rust" -version = "0.7.1" +version = "0.8.0" authors = ["Tom Forbes ", "Clark McCauley "] edition = "2018" license = "MIT" -categories = ["interpreter", "cel"] +categories = ["compilers"] [dependencies] -cel-parser = { path = "../parser", version = "0.6.0" } +cel-parser = { path = "../parser", version = "0.7.0" } thiserror = "1.0.40" chrono = "0.4.26" nom = "7.1.3" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index bd5f575..6e552b5 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -2,11 +2,11 @@ name = "cel-parser" description = "A parser for the Common Expression Language (CEL)" repository = "https://github.com/clarkmcc/cel-rust" -version = "0.6.0" +version = "0.7.0" authors = ["Tom Forbes ", "Clark McCauley "] edition = "2018" license = "MIT" -categories = ["parsing", "cel"] +categories = ["parsing"] [dependencies] lalrpop-util = { version = "0.19.1", features = ["lexer"] }