From 610adec7e08fcf75b511dd76b8f605f61d2fb9d9 Mon Sep 17 00:00:00 2001 From: Sokwhan Huh Date: Mon, 14 Aug 2023 14:07:29 -0700 Subject: [PATCH] Internal Changes PiperOrigin-RevId: 556906464 --- runtime/src/main/java/dev/cel/runtime/BUILD.bazel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/src/main/java/dev/cel/runtime/BUILD.bazel b/runtime/src/main/java/dev/cel/runtime/BUILD.bazel index 4d4afdea..f4edb9ed 100644 --- a/runtime/src/main/java/dev/cel/runtime/BUILD.bazel +++ b/runtime/src/main/java/dev/cel/runtime/BUILD.bazel @@ -49,7 +49,6 @@ java_library( "//common", "//common:error_codes", "//common:options", - "//common:proto_ast", "//common:runtime_exception", "//common/annotations", "//common/internal:comparison_functions", @@ -68,7 +67,7 @@ java_library( java_library( name = "interpreter", srcs = INTERPRETER_SOURCES, - deprecation = "Please use //java/com/google/api/expr/cel:runtime instead", + deprecation = "Please use CEL-Java Fluent APIs //runtime:runtime instead", tags = [ ], exports = [":base"], @@ -81,12 +80,12 @@ java_library( "//common:error_codes", "//common:features", "//common:options", - "//common:proto_ast", "//common:runtime_exception", "//common/annotations", "//common/ast", "//common/internal:dynamic_proto", "//common/types:type_providers", + "//runtime:unknown_attributes", "@cel_spec//proto/cel/expr:expr_java_proto", "@maven//:com_google_code_findbugs_annotations", "@maven//:com_google_errorprone_error_prone_annotations", @@ -151,6 +150,7 @@ java_library( "//common:options", "//common/annotations", "//common/internal:dynamic_proto", + "//runtime:unknown_attributes", "@maven//:com_google_code_findbugs_annotations", "@maven//:com_google_errorprone_error_prone_annotations", "@maven//:com_google_guava_guava",