mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-20 06:50:37 +00:00
* feat: bump datafusion to 53 Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * use updated datafusion-orc Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * maintain topk in part sort Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * docs: clarify part_sort range detection and Null threshold semantics * fix limit 0 Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com> Co-authored-by: discord9 <discord9@163.com>
52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[package]
|
|
name = "object-store"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
services-memory = ["opendal/services-memory"]
|
|
testing = ["derive_builder"]
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
chrono.workspace = true
|
|
common-base.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-telemetry.workspace = true
|
|
datafusion_object_store.workspace = true
|
|
derive_builder = { workspace = true, optional = true }
|
|
futures.workspace = true
|
|
humantime-serde.workspace = true
|
|
lazy_static.workspace = true
|
|
opendal = { version = "0.56", features = [
|
|
"layers-tracing",
|
|
"layers-prometheus",
|
|
"services-azblob",
|
|
"services-fs",
|
|
"services-gcs",
|
|
"services-http",
|
|
"services-oss",
|
|
"services-s3",
|
|
] }
|
|
prometheus.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
snafu.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
common-telemetry.workspace = true
|
|
common-test-util.workspace = true
|
|
object_store_opendal.workspace = true
|
|
rand.workspace = true
|
|
tempfile.workspace = true
|
|
tokio.workspace = true
|