Skip to content

Commit

Permalink
Add new functions to lib.rs so they are visible in crate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Apr 20, 2024
1 parent a121301 commit 3c0f18a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Add new functions to `lib.rs` so they are visible in crate docs

## [0.6.1] - 2024-04-20

### Added
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ pub use array::{
array_read_write::zarrsArrayStoreSubset,
array_write::{zarrsArrayStoreChunk, zarrsArrayStoreMetadata},
data_type::ZarrsDataType,
zarrsArrayGetChunkSize, zarrsArrayGetSubsetSize, zarrsCreateArrayRW,
zarrsArrayGetChunkGridShape, zarrsArrayGetChunkOrigin, zarrsArrayGetChunkShape,
zarrsArrayGetChunkSize, zarrsArrayGetChunksInSubset, zarrsArrayGetDataType,
zarrsArrayGetDimensionality, zarrsArrayGetShape, zarrsArrayGetSubsetSize, zarrsCreateArrayRW,
zarrsCreateArrayRWWithMetadata, zarrsDestroyArray, ZarrsArray,
};
pub use storage::{zarrsCreateStorageFilesystem, zarrsDestroyStorage, ZarrsStorage};
Expand Down

0 comments on commit 3c0f18a

Please sign in to comment.