mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-28 10:50:39 +00:00
* feat: adds pre-commit config and hooks * refactor: sort all Cargo.toml by cargo-sort * ci: adds conventional-pre-commit hook to pre-commit * fix: remove .pre-commit-hooks.yaml * fix: readme * Update .pre-commit-config.yaml Co-authored-by: Lei, Huang <6406592+v0y4g3r@users.noreply.github.com> * ci: move clippy hook to push stage * docs: install pre-push github hook Co-authored-by: Lei, Huang <6406592+v0y4g3r@users.noreply.github.com>
21 lines
693 B
TOML
21 lines
693 B
TOML
[package]
|
|
name = "test-util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
common-query = { path = "../src/common/query" }
|
|
common-recordbatch = { path = "../src/common/recordbatch" }
|
|
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2", features = ["simd"] }
|
|
datatypes = { path = "../src/datatypes" }
|
|
futures = "0.3"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
table = { path = "../src/table" }
|
|
tokio = { version = "1.20", features = ["full"] }
|
|
|
|
[dependencies.arrow]
|
|
package = "arrow2"
|
|
version = "0.10"
|
|
features = ["io_csv", "io_json", "io_parquet", "io_parquet_compression", "io_ipc", "ahash", "compute", "serde_types"]
|