[package] name = "stellarium" version = "0.1.0" edition = "2021" description = "Image management and content-addressed storage for Volt microVMs" license = "Apache-2.0" [[bin]] name = "stellarium" path = "src/main.rs" [dependencies] # Hashing blake3 = "1.5" hex = "0.4" # Content-defined chunking fastcdc = "3.1" # Persistent storage sled = "0.34" # Serialization serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" bincode = "1.3" # Async runtime tokio = { version = "1.0", features = ["full"] } # HTTP client (for CDN/OCI) reqwest = { version = "0.12", features = ["json", "stream"] } # Error handling thiserror = "2.0" anyhow = "1.0" # Logging tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # CLI clap = { version = "4", features = ["derive"] } # Utilities parking_lot = "0.12" dashmap = "6.0" bytes = "1.5" tempfile = "3.10" uuid = { version = "1.0", features = ["v4"] } sha2 = "0.10" walkdir = "2.5" futures = "0.3" # Compression zstd = "0.13" lz4_flex = "0.11" [dev-dependencies] rand = "0.8"