add compression column

This commit is contained in:
Dylan Knutson
2024-04-23 15:06:37 -07:00
parent c772661cf2
commit d91e3c8105
4 changed files with 122 additions and 26 deletions

View File

@@ -20,7 +20,7 @@ clap = { version = "4.5.4", features = ["derive"] }
futures = "0.3.30"
kdam = "0.5.1"
rand = "0.8.5"
rusqlite = "0.31.0"
rusqlite = { version = "0.31.0", features = ["vtab"] }
serde = { version = "1.0.198", features = ["serde_derive"] }
serde_json = "1.0.116"
sha2 = "0.10.8"
@@ -30,3 +30,4 @@ tracing = "0.1.40"
tracing-subscriber = "0.3.18"
reqwest = { version = "0.12.4", features = ["json", "multipart", "blocking"] }
hex = "0.4.3"
zstd = "0.13.1"