From b4a8fdec6b0e42cced309c4a499b6c19fcc09f51 Mon Sep 17 00:00:00 2001 From: Matthew Powers Date: Fri, 17 Nov 2023 19:19:58 -0500 Subject: [PATCH] Add Rust installation instructions --- docs/{ => usage}/installation.md | 8 ++++++++ mkdocs.yml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) rename docs/{ => usage}/installation.md (65%) diff --git a/docs/installation.md b/docs/usage/installation.md similarity index 65% rename from docs/installation.md rename to docs/usage/installation.md index 4bd3ffa3ce..70f75c3f78 100644 --- a/docs/installation.md +++ b/docs/usage/installation.md @@ -1,5 +1,7 @@ # Installation +The `deltalake` project can be installed via Pip for Python or Cargo for Rust. + ## Using Pip ``` bash @@ -7,3 +9,9 @@ pip install deltalake ``` NOTE: official binary wheels are linked against openssl statically for remote objection store communication. Please file Github issue to request for critical openssl upgrade. + +## Using Cargo + +``` bash +cargo add deltalake +``` \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 7fe08d77a1..41f0ee309c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -16,8 +16,8 @@ theme: - content.tabs.link nav: - Home: index.md - - Installation: installation.md - Usage: + - Installation: usage/installation.md - Overview: usage/index.md - Loading a Delta Table: usage/loading-table.md - Examining a Delta Table: usage/examining-table.md