firecloud-storage 0.2.0

Chunking, compression, and local storage for FireCloud distributed storage
Documentation
[package]
name = "firecloud-storage"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true
description = "Chunking, compression, and local storage for FireCloud distributed storage"
readme = "README.md"
exclude = ["*.md", "!README.md"]

[dependencies]
firecloud-core = { path = "../firecloud-core", version = "0.2.0" }
firecloud-crypto = { path = "../firecloud-crypto", version = "0.2.0" }
fastcdc.workspace = true
zstd.workspace = true
lz4_flex.workspace = true
# raptorq.workspace = true         # Disabled for MVP - heavy compile
# reed-solomon-erasure.workspace = true  # Disabled for MVP
# rocksdb.workspace = true         # Disabled - use sled (lighter)
sled = "0.34"                       # Lightweight embedded DB
blake3.workspace = true
serde.workspace = true
bincode.workspace = true
thiserror.workspace = true
tracing.workspace = true
bytes.workspace = true
tokio.workspace = true
uuid.workspace = true

[dev-dependencies]
tempfile = "3"
chrono.workspace = true