From b35a4273b2c1e39115ac100a7be8dc03b7ea93bf Mon Sep 17 00:00:00 2001 From: Jai Chopra Date: Wed, 22 Mar 2023 13:36:19 -0700 Subject: [PATCH 1/3] update readme --- README.md | 6 +++--- rust/Cargo.lock | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 rust/Cargo.lock diff --git a/README.md b/README.md index f1c8e343c..b3fd603bc 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@
-LanceDB is an open-source database for vector-search built with persistent storage, which greatly simplifies storage, retrieval and filtering for vectors and more. +LanceDB is an open-source database for vector-search built with persistent storage, which greatly simplifies retrevial, filtering and management of embeddings. -The key features of Lance include: +The key features of LanceDB include: * Production-scale vector search with no servers to manage. @@ -27,7 +27,7 @@ The key features of Lance include: * Ecosystem integrations: Apache-Arrow, Pandas, Polars, DuckDB and more on the way. -Lance's core is written in Rust 🦀 and is built using Lance, an open-source columnar format designed for performant ML workloads. +LanceDB's core is written in Rust 🦀 and is built using Lance, an open-source columnar format designed for performant ML workloads. ## Quick Start diff --git a/rust/Cargo.lock b/rust/Cargo.lock new file mode 100644 index 000000000..470b46a19 --- /dev/null +++ b/rust/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "lancedb" +version = "0.0.1" From 5648801064049b3847302b5142bc7e13dcf9eec4 Mon Sep 17 00:00:00 2001 From: Jai Chopra Date: Wed, 22 Mar 2023 13:36:44 -0700 Subject: [PATCH 2/3] rm Cargo.lock --- .gitignore | 3 ++- rust/Cargo.lock | 7 ------- 2 files changed, 2 insertions(+), 8 deletions(-) delete mode 100644 rust/Cargo.lock diff --git a/.gitignore b/.gitignore index ff48bc561..822735824 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ *.egg-info **/__pycache__ -rust/target \ No newline at end of file +rust/target +rust/Cargo.lock \ No newline at end of file diff --git a/rust/Cargo.lock b/rust/Cargo.lock deleted file mode 100644 index 470b46a19..000000000 --- a/rust/Cargo.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "lancedb" -version = "0.0.1" From d0908bd2f7cba60012f5220d20fcb6ec1b2cb03c Mon Sep 17 00:00:00 2001 From: Jai Chopra Date: Wed, 22 Mar 2023 13:39:32 -0700 Subject: [PATCH 3/3] add link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3fd603bc..fc7e4965f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The key features of LanceDB include: * Ecosystem integrations: Apache-Arrow, Pandas, Polars, DuckDB and more on the way. -LanceDB's core is written in Rust 🦀 and is built using Lance, an open-source columnar format designed for performant ML workloads. +LanceDB's core is written in Rust 🦀 and is built using Lance, an open-source columnar format designed for performant ML workloads. ## Quick Start