Skip to content

Commit

Permalink
Add hooks to json encoder to override default encoding or add support…
Browse files Browse the repository at this point in the history
… for unsupported types
  • Loading branch information
adriangb committed Jan 29, 2025
1 parent 2bd43e9 commit 2f50dc7
Show file tree
Hide file tree
Showing 3 changed files with 564 additions and 84 deletions.
4 changes: 3 additions & 1 deletion arrow-json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ pub mod reader;
pub mod writer;

pub use self::reader::{Reader, ReaderBuilder};
pub use self::writer::{ArrayWriter, LineDelimitedWriter, Writer, WriterBuilder};
pub use self::writer::{
ArrayWriter, Encoder, EncoderFactory, LineDelimitedWriter, Writer, WriterBuilder,
};
use half::f16;
use serde_json::{Number, Value};

Expand Down
Loading

0 comments on commit 2f50dc7

Please sign in to comment.