objstore 0.1.0-alpha.1

Core objstore crate: common traits, types, and APIs used by storage backend implementations.
Documentation
[package]
name = "objstore"
version.workspace = true
authors.workspace = true
keywords.workspace = true
repository.workspace = true
license.workspace = true
readme.workspace = true
description = "Core objstore crate: common traits, types, and APIs used by storage backend implementations."
edition.workspace = true

# rust-version.workspace = true

[features]
default = ["tracing"]

# Enables the TracedObjStore wrapper, which uses the `tracing` to log operations.
tracing = ["dep:tracing"]

[dependencies]
async-trait.workspace = true
anyhow.workspace = true
bytes.workspace = true
time.workspace = true
serde.workspace = true
serde_json.workspace = true
url.workspace = true
futures.workspace = true

tracing = { workspace = true, optional = true}

serde_path_to_error = "0.1"