Skip to content

Commit

Permalink
Remove old JSON Reader and Decoder (#3610) (#4052)
Browse files Browse the repository at this point in the history
* Remove old JSON Reader and Decoder (#3610)

* More tests

* Fix doc

* Fix test

* Fix bench
  • Loading branch information
tustvold committed Apr 12, 2023
1 parent eec499d commit 6ce332a
Show file tree
Hide file tree
Showing 19 changed files with 1,341 additions and 3,621 deletions.
14 changes: 11 additions & 3 deletions arrow-json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,18 @@
pub mod reader;
pub mod writer;

mod raw;
#[doc(hidden)]
#[deprecated(note = "Use Decoder")]
pub type RawDecoder = reader::Decoder;

#[doc(hidden)]
#[deprecated(note = "Use Reader")]
pub type RawReader<R> = Reader<R>;

#[doc(hidden)]
#[deprecated(note = "Use ReaderBuilder")]
pub type RawReaderBuilder = ReaderBuilder;

pub use self::raw::{RawDecoder, RawReader, RawReaderBuilder};
#[allow(deprecated)]
pub use self::reader::{Reader, ReaderBuilder};
pub use self::writer::{ArrayWriter, LineDelimitedWriter, Writer};
use half::f16;
Expand Down
Loading

0 comments on commit 6ce332a

Please sign in to comment.