https://github.com/zarrs/zarrs_http
A synchronous http store for the zarrs crate
https://github.com/zarrs/zarrs_http
Last synced: 3 months ago
JSON representation
A synchronous http store for the zarrs crate
- Host: GitHub
- URL: https://github.com/zarrs/zarrs_http
- Owner: zarrs
- License: apache-2.0
- Created: 2025-11-04T20:47:11.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-04T21:03:38.000Z (8 months ago)
- Last Synced: 2026-01-02T12:34:26.907Z (6 months ago)
- Language: Rust
- Size: 33.2 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# zarrs_http
[](https://crates.io/crates/zarrs_http)
[](https://docs.rs/zarrs_http)

[](https://github.com/zarrs/zarrs_http/actions/workflows/ci.yml)
[](https://codecov.io/gh/zarrs/zarrs_http)
A synchronous `http` store for the [`zarrs`](https://crates.io/crates/zarrs) Rust crate.
For asynchronous `HTTP` support, use [`zarrs_object_store`](https://crates.io/crates/zarrs_object_store) or [`zarrs_opendal`](https://crates.io/crates/zarrs_opendal).
```rust
use zarrs_storage::ReadableStorage;
use zarrs_http::HTTPStore;
let http_store: ReadableStorage = Arc::new(HTTPStore::new("http://...")?);
```
## Licence
`zarrs_http` is licensed under either of
- the Apache License, Version 2.0 [LICENSE-APACHE](./LICENCE-APACHE) or or
- the MIT license [LICENSE-MIT](./LICENCE-MIT) or , at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.