mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 06:42:57 +00:00
* feat: Compress manifest and checkpoint * refactor: use file extention infer compression type * chore: apply suggestions from CR * Update src/storage/src/manifest/storage.rs Co-authored-by: Yingwen <realevenyag@gmail.com> * chore: CR advices * chore: Fix bugs, strengthen test * chore: Fix CR, strengthen test --------- Co-authored-by: dennis zhuang <killme2008@gmail.com> Co-authored-by: Yingwen <realevenyag@gmail.com>
36 lines
774 B
TOML
36 lines
774 B
TOML
[package]
|
|
name = "common-datasource"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arrow.workspace = true
|
|
arrow-schema.workspace = true
|
|
async-compression = { version = "0.3", features = [
|
|
"bzip2",
|
|
"gzip",
|
|
"xz",
|
|
"zstd",
|
|
"futures-io",
|
|
"tokio",
|
|
] }
|
|
async-trait.workspace = true
|
|
bytes = "1.1"
|
|
common-base = { path = "../base" }
|
|
common-error = { path = "../error" }
|
|
common-runtime = { path = "../runtime" }
|
|
datafusion.workspace = true
|
|
derive_builder = "0.12"
|
|
futures.workspace = true
|
|
object-store = { path = "../../object-store" }
|
|
regex = "1.7"
|
|
snafu.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
url = "2.3"
|
|
paste = "1.0"
|
|
|
|
[dev-dependencies]
|
|
common-test-util = { path = "../test-util" }
|