cloudillo-file 0.8.9

File storage subsystem for Cloudillo: upload, download, image processing, and variant generation
Documentation
[package]
name = "cloudillo-file"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
description = "File storage subsystem for Cloudillo: upload, download, image processing, and variant generation"
keywords = ["cloudillo", "file-storage", "image-processing", "upload", "variants"]
categories = ["web-programming", "filesystem"]
readme = "../../README.md"

[dependencies]
cloudillo-core = { workspace = true }
cloudillo-types = { workspace = true }

# HTTP framework
async-trait = "0.1"
axum = { version = "0.8", features = ["http2", "macros"] }
futures = "0.3"
futures-core = "0.3"
itertools = "0.14"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt", "fs"] }

# Image processing (heavy deps — the whole point of extraction)
image = "0.25"
webp = "0.3"

# SVG processing
resvg = "0.47"
usvg = "0.47"
regex = "1.12"

# CRDT support (for file duplication)
yrs = "0.25"

# Logging
tracing = "0.1"