mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +00:00
* refactor: add table_info method for Table trait * feat: add table_info method to Table trait * test: add more unit test * fix: impl table_info for SystemTable * test: fix failing test
32 lines
1021 B
TOML
32 lines
1021 B
TOML
[package]
|
|
name = "catalog"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-stream = "0.3"
|
|
async-trait = "0.1"
|
|
common-error = { path = "../common/error" }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-time = { path = "../common/time" }
|
|
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2", features = ["simd"] }
|
|
datatypes = { path = "../datatypes" }
|
|
futures = "0.3"
|
|
futures-util = "0.3"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
table = { path = "../table" }
|
|
|
|
[dev-dependencies]
|
|
log-store = { path = "../log-store" }
|
|
object-store = { path = "../object-store" }
|
|
opendal = "0.17"
|
|
storage = { path = "../storage" }
|
|
table-engine = { path = "../table-engine" }
|
|
tempdir = "0.3"
|
|
tokio = { version = "1.0", features = ["full"] }
|