mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
31 lines
660 B
TOML
31 lines
660 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-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"
|