This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made docs be compiled with feature
full
(#391)
* Documented how to publish with all features. * Better docs of feature flags.
- Loading branch information
1 parent
abe0e88
commit 6ca4a6e
Showing
10 changed files
with
31 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
//! Interact with different formats such as Arrow, CSV, parquet, etc. | ||
#[cfg(feature = "io_csv")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "io_csv")))] | ||
pub mod csv; | ||
|
||
#[cfg(feature = "io_json")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "io_json")))] | ||
pub mod json; | ||
|
||
#[cfg(feature = "io_ipc")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "io_ipc")))] | ||
pub mod ipc; | ||
|
||
#[cfg(feature = "io_json_integration")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "io_json_integration")))] | ||
pub mod json_integration; | ||
|
||
#[cfg(feature = "io_parquet")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "io_parquet")))] | ||
pub mod parquet; | ||
|
||
#[cfg(feature = "io_print")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "io_print")))] | ||
pub mod print; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters