From a331f068c7134fc5c75ea8f374f9d7065e467138 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sun, 22 Sep 2024 11:34:24 -0700 Subject: [PATCH] Readd log feature --- runtime/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 52e19e8eb..4a35725a1 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -20,6 +20,8 @@ path = "src/lib.rs" [features] jvm-callback-support = ["dep:jni"] +log = ["dep:log"] [dependencies] -jni = { version = "0.21", optional = true } \ No newline at end of file +jni = { version = "0.21", optional = true } +log = { version = "0.4", optional = true }