This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 4200bedd61 Minor: improve object_store docs.rs library landing page
(#4682)
4200bedd61 is described below
commit 4200bedd618321e80db26bbe767efc69e491a68d
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Aug 11 08:03:34 2023 -0400
Minor: improve object_store docs.rs library landing page (#4682)
---
object_store/src/lib.rs | 28 +++++++++++++++++++++++++---
1 file changed, 25 insertions(+), 3 deletions(-)
diff --git a/object_store/src/lib.rs b/object_store/src/lib.rs
index 6c70326d2b..bb4ba5c7d9 100644
--- a/object_store/src/lib.rs
+++ b/object_store/src/lib.rs
@@ -28,10 +28,32 @@
//! # object_store
//!
-//! This crate provides a uniform API for interacting with object storage
services and
-//! local files via the the [`ObjectStore`] trait.
+//! This crate provides a uniform API for interacting with object
+//! storage services and local files via the [`ObjectStore`]
+//! trait.
//!
-//! # Create an [`ObjectStore`] implementation:
+//! Using this crate, the same binary and code can run in multiple
+//! clouds and local test environments, via a simple runtime
+//! configuration change.
+//!
+//! # Features:
+//!
+//! 1. A focused, easy to use, idiomatic, well documented, high
+//! performance, `async` API.
+//!
+//! 2. Production quality, leading this crate to be used in large
+//! scale production systems, such as [crates.io] and [InfluxDB IOx].
+//!
+//! 3. Stable and predictable governance via the [Apache Arrow] project.
+//!
+//! Originally developed for [InfluxDB IOx] and subsequently donated
+//! to [Apache Arrow].
+//!
+//! [Apache Arrow]: https://arrow.apache.org/
+//! [InfluxDB IOx]: https://github.com/influxdata/influxdb_iox/
+//! [crates.io]: https://github.com/rust-lang/crates.io
+//!
+//! # Example: Create an [`ObjectStore`] implementation:
//!
#![cfg_attr(
feature = "gcp",