feat: background downloading

This commit is contained in:
Andreas Bigger
2025-12-29 17:05:07 -05:00
parent 7129747d5e
commit 835bddd2ee
23 changed files with 3683 additions and 294 deletions
+8
View File
@@ -51,6 +51,8 @@ paracas-instruments = { path = "crates/paracas-instruments", version = "0.1.0" }
paracas-fetch = { path = "crates/paracas-fetch", version = "0.1.0" }
paracas-aggregate = { path = "crates/paracas-aggregate", version = "0.1.0" }
paracas-format = { path = "crates/paracas-format", version = "0.1.0" }
paracas-estimate = { path = "crates/paracas-estimate", version = "0.1.0" }
paracas-daemon = { path = "crates/paracas-daemon", version = "0.1.0" }
# Async runtime
tokio = { version = "1.42", features = ["full"] }
@@ -97,3 +99,9 @@ approx = "0.5"
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
tempfile = "3.14"
which = "7.0"
# UUID
uuid = { version = "1.0", features = ["v4", "serde"] }
# Directories
directories = "5.0"