Added the mb db download. Big upsides and downsides
All checks were successful
CI / check (push) Successful in 1m11s
CI / docker (push) Successful in 2m21s

This commit is contained in:
Connor Johnstone
2026-03-21 23:22:49 -04:00
parent 31d54651e6
commit 51f2c2ae8f
9 changed files with 2181 additions and 142 deletions

View File

@@ -11,7 +11,16 @@ serde_json = "1"
thiserror = "2"
tracing = "0.1"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
futures-util = "0.3"
rusqlite = { version = "0.29", optional = true }
xz2 = { version = "0.1", optional = true }
tar = { version = "0.4", optional = true }
chrono = { version = "0.4", optional = true }
[features]
default = ["local-mb"]
local-mb = ["rusqlite", "xz2", "tar", "chrono"]
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }