Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions arrow-avro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ bzip2 = { version = "0.6.0", optional = true }
xz = { version = "0.1", default-features = false, optional = true }
crc = { version = "3.0", optional = true }
uuid = "1.17"
strum_macros = "0.27"

[dev-dependencies]
arrow-data = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions arrow-avro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
/// Implements the primary reader interface and record decoding logic.
pub mod reader;

// Avro schema parsing and representation
//
// Provides types for parsing and representing Avro schema definitions.
mod schema;
/// Avro schema parsing and representation
///
/// Provides types for parsing and representing Avro schema definitions.
pub mod schema;

/// Compression codec implementations for Avro
///
Expand Down
Loading
Loading