-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump `zfp-sys` to 0.2.0 - Remove `async-recursion` dependency
- Loading branch information
Showing
19 changed files
with
21 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs" | |
version = "0.18.0-dev" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "A library for the Zarr storage format for multidimensional arrays and metadata" | ||
documentation = "https://docs.rs/zarrs" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
@@ -27,7 +27,7 @@ transpose = ["dep:ndarray"] # Enable the transpose codec | |
zfp = ["dep:zfp-sys"] # Enable the experimental zfp codec | ||
zstd = ["dep:zstd"] # Enable the zstd codec | ||
ndarray = ["dep:ndarray"] # Adds ndarray utility functions to Array | ||
async = ["dep:async-trait", "dep:async-recursion", "dep:futures", "zarrs_storage/async"] # Enable experimental async API | ||
async = ["dep:async-trait", "dep:futures", "zarrs_storage/async"] # Enable experimental async API | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
@@ -37,7 +37,6 @@ crate-type = ["lib"] | |
bench = false | ||
|
||
[dependencies] | ||
async-recursion = { version = "1.0.5", optional = true } | ||
async-trait = { version = "0.1.74", optional = true } | ||
blosc-sys = { version = "0.3.4", package = "blosc-src", features = ["snappy", "lz4", "zlib", "zstd"], optional = true } | ||
bytemuck = { version = "1.14.0", features = ["extern_crate_alloc", "must_cast", "min_const_generics"] } | ||
|
@@ -66,8 +65,7 @@ unsafe_cell_slice = "0.2.0" | |
zarrs_filesystem = { workspace = true, optional = true } | ||
zarrs_metadata = { workspace = true } | ||
zarrs_storage = { workspace = true } | ||
# zfp-sys is pinned to 0.1.15 to mainain 1.76 MSRV | ||
zfp-sys = {version = "=0.1.15", features = ["static"], optional = true } | ||
zfp-sys = {version = "0.2.0", features = ["static"], optional = true } | ||
zstd = { version = "0.13.1", features = ["zstdmt"], optional = true } | ||
|
||
[dependencies.num-complex] | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_filesystem" | |
version = "0.1.0" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "A filesystem store for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_filesystem" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_http" | |
version = "0.1.0" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "A synchronous http store for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_storage" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_metadata" | |
version = "0.2.0" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "Zarr metadata support for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_object_store" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_object_store" | |
version = "0.2.1" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "object_store store support for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_object_store" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_opendal" | |
version = "0.3.1" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "opendal store support for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_opendal" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_storage" | |
version = "0.3.0-dev" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "The storage API and default stores for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_storage" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "zarrs_zip" | |
version = "0.1.0" | ||
authors = ["Lachlan Deakin <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.77" | ||
description = "A storage adapter for zip files for the zarrs crate" | ||
documentation = "https://docs.rs/zarrs_zip" | ||
repository = "https://github.com/LDeakin/zarrs" | ||
|