From 7982d5c0821e226db8ff90bba8b34bd12ce9e5d6 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 21 Mar 2025 17:12:53 +0000 Subject: [PATCH] fix: correct rust install docs (#2253) I'm pretty sure you mean `cargo add lancedb` here, `cargo install lancedb` fails right now. --- rust/lancedb/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/lancedb/src/lib.rs b/rust/lancedb/src/lib.rs index b19b7fc0..21cdc51e 100644 --- a/rust/lancedb/src/lib.rs +++ b/rust/lancedb/src/lib.rs @@ -20,7 +20,7 @@ //! LanceDB runs in process, to use it in your Rust project, put the following in your `Cargo.toml`: //! //! ```shell -//! cargo install lancedb +//! cargo add lancedb //! ``` //! //! ## Crate Features