This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new ec75d000c6 docs: Add links for arrow-avro (#8770)
ec75d000c6 is described below

commit ec75d000c66609b400dc8a62cf8c8b05afc048a7
Author: Andrew Lamb <[email protected]>
AuthorDate: Thu Nov 6 06:44:18 2025 -0500

    docs: Add links for arrow-avro (#8770)
    
    # Which issue does this PR close?
    
    Follow on to
    - #8402
    
    # Rationale for this change
    
    Let's tell people about arrow-avro
    
    # What changes are included in this PR?
    
    Touchup the main crate docs to mention arrow-avro
    
    # Are these changes tested?
    
    CI and I tested the docs manually
    
    # Are there any user-facing changes?
    
    Docs only
    
    cc @jecsand838
---
 arrow/src/lib.rs | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/arrow/src/lib.rs b/arrow/src/lib.rs
index 05ff3181a2..f9b0c717f0 100644
--- a/arrow/src/lib.rs
+++ b/arrow/src/lib.rs
@@ -255,7 +255,9 @@
 //! * CSV: [`Reader`](csv::reader::Reader) and [`Writer`](csv::writer::Writer)
 //! * IPC: [`Reader`](ipc::reader::StreamReader) and 
[`Writer`](ipc::writer::FileWriter)
 //!
-//! Parquet is published as a [separate 
crate](https://crates.io/crates/parquet)
+//! Support for [Apache Parquet] is published as a [separate parquet 
crate](https://crates.io/crates/parquet)
+//!
+//! Support for [Apache Avro] is published as a [separate arrow-avro 
crate](https://crates.io/crates/arrow-avro)
 //!
 //! # Serde Compatibility
 //!
@@ -330,7 +332,8 @@
 //! Some functionality is also distributed independently of this crate:
 //!
 //! * [`arrow-flight`] - support for [Arrow Flight RPC]
-//! * [`parquet`](https://docs.rs/parquet/latest/parquet/) - support for 
[Apache Parquet]
+//! * [`parquet`](https://docs.rs/parquet) - support for [Apache Parquet]
+//! * [`arrow-avro`](https://docs.rs/arrow-avro) - support for [Apache Avro]
 //!
 //! # Safety and Security
 //!
@@ -361,6 +364,7 @@
 //! [Arrow Flight RPC]: https://arrow.apache.org/docs/format/Flight.html
 //! [Arrow JSON Test Format]: 
https://github.com/apache/arrow/blob/master/docs/source/format/Integration.rst#json-test-data-format
 //! [Apache Parquet]: https://parquet.apache.org/
+//! [Apache Avro]: https://avro.apache.org/
 //! [DataFusion]: https://github.com/apache/arrow-datafusion
 //! [issue tracker]: https://github.com/apache/arrow-rs/issues
 

Reply via email to