From cc72439032b1b569ed92ab0048abf18fcefb6887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Sat, 8 Feb 2025 12:09:17 +0900 Subject: [PATCH] Add java section in README.md --- Cargo.lock | 18 +++++++++--------- README.md | 5 +++++ bindings/java/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d26da84a6..92df9db99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1394,15 +1394,6 @@ version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" -[[package]] -name = "java-limbo" -version = "0.0.14" -dependencies = [ - "jni", - "limbo_core", - "thiserror 2.0.11", -] - [[package]] name = "jni" version = "0.21.1" @@ -1590,6 +1581,15 @@ dependencies = [ "limbo_core", ] +[[package]] +name = "limbo-java" +version = "0.0.14" +dependencies = [ + "jni", + "limbo_core", + "thiserror 2.0.11", +] + [[package]] name = "limbo-wasm" version = "0.0.14" diff --git a/README.md b/README.md index 6e150716c..480933581 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,11 @@ for rows.Next() { } ``` +### ☕️ Java (wip) + +We integrated Limbo into JDBC. For detailed instructions on how to use Limbo with java, please refer to +the [README.md under bindings/java](bindings/java/README.md). + ## Contributing We'd love to have you contribute to Limbo! Please check out the [contribution guide] to get started. diff --git a/bindings/java/Cargo.toml b/bindings/java/Cargo.toml index e3b7660c5..9b78b1597 100644 --- a/bindings/java/Cargo.toml +++ b/bindings/java/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "java-limbo" +name = "limbo-java" version.workspace = true authors.workspace = true edition.workspace = true