mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 12:52:57 +00:00
* add compaction udf params * wip: pass compaction options through grpc * wip: pass compaction options all the way down to region server * wip: window compaction task * feat: trigger major compaction * refactor: optimize compaction parameter parsing * chore: rebase main * chore: update proto * chore: add some tests * feat: validate catalog * chore: fix typo and rebase main * fix: some cr comments * fix: file_time_bucket_span * fix: avoid upper bound overflow * chore: update proto
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "table"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
chrono.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-datasource.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion-physical-expr.workspace = true
|
|
datatypes.workspace = true
|
|
derive_builder.workspace = true
|
|
futures.workspace = true
|
|
greptime-proto.workspace = true
|
|
humantime.workspace = true
|
|
humantime-serde.workspace = true
|
|
paste = "1.0"
|
|
serde.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
common-test-util.workspace = true
|
|
parquet = { workspace = true, features = ["async"] }
|
|
serde_json.workspace = true
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|