mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* feat: add create table procedure * feat: change table_info type from vec u8 to RawTableInfo * feat: return create table status * fix: fix uncaught error * refactor: use a notifier to respond to callers * chore: apply suggestions from CR * chore: apply suggestions from CR * chore: add comment * chore: apply suggestions from CR * refacotr: make CreateMetadata step after DatanodeCreateTable step
107 lines
3.4 KiB
TOML
107 lines
3.4 KiB
TOML
[workspace]
|
|
members = [
|
|
"benchmarks",
|
|
"src/api",
|
|
"src/catalog",
|
|
"src/client",
|
|
"src/cmd",
|
|
"src/common/base",
|
|
"src/common/catalog",
|
|
"src/common/datasource",
|
|
"src/common/error",
|
|
"src/common/function",
|
|
"src/common/function-macro",
|
|
"src/common/grpc",
|
|
"src/common/grpc-expr",
|
|
"src/common/mem-prof",
|
|
"src/common/meta",
|
|
"src/common/procedure",
|
|
"src/common/procedure-test",
|
|
"src/common/pprof",
|
|
"src/common/query",
|
|
"src/common/recordbatch",
|
|
"src/common/runtime",
|
|
"src/common/substrait",
|
|
"src/common/telemetry",
|
|
"src/common/test-util",
|
|
"src/common/time",
|
|
"src/datanode",
|
|
"src/datatypes",
|
|
"src/file-table-engine",
|
|
"src/frontend",
|
|
"src/log-store",
|
|
"src/meta-client",
|
|
"src/meta-srv",
|
|
"src/mito",
|
|
"src/mito2",
|
|
"src/object-store",
|
|
"src/partition",
|
|
"src/promql",
|
|
"src/query",
|
|
"src/script",
|
|
"src/servers",
|
|
"src/session",
|
|
"src/sql",
|
|
"src/storage",
|
|
"src/store-api",
|
|
"src/table",
|
|
"src/table-procedure",
|
|
"tests-integration",
|
|
"tests/runner",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.3.2"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[workspace.dependencies]
|
|
arrow = { version = "40.0" }
|
|
arrow-array = "40.0"
|
|
arrow-flight = "40.0"
|
|
arrow-schema = { version = "40.0", features = ["serde"] }
|
|
async-stream = "0.3"
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
# TODO(ruihang): use arrow-datafusion when it contains https://github.com/apache/arrow-datafusion/pull/6032
|
|
datafusion = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
datafusion-common = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
datafusion-expr = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
datafusion-optimizer = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
datafusion-physical-expr = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
datafusion-sql = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
datafusion-substrait = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "63e52dde9e44cac4b1f6c6e6b6bf6368ba3bd323" }
|
|
futures = "0.3"
|
|
futures-util = "0.3"
|
|
greptime-proto = { git = "https://github.com/WenyXu/greptime-proto.git", rev = "1eda4691a5d2c8ffc463d48ca2317905ba7e4b2d" }
|
|
itertools = "0.10"
|
|
parquet = "40.0"
|
|
paste = "1.0"
|
|
prost = "0.11"
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sqlparser = "0.34"
|
|
tempfile = "3"
|
|
tokio = { version = "1.28", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["io-util", "compat"] }
|
|
tonic = { version = "0.9", features = ["tls"] }
|
|
uuid = { version = "1", features = ["serde", "v4", "fast-rng"] }
|
|
metrics = "0.20"
|
|
meter-core = { git = "https://github.com/GreptimeTeam/greptime-meter.git", rev = "abbd357c1e193cd270ea65ee7652334a150b628f" }
|
|
|
|
[workspace.dependencies.meter-macros]
|
|
git = "https://github.com/GreptimeTeam/greptime-meter.git"
|
|
rev = "abbd357c1e193cd270ea65ee7652334a150b628f"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[profile.nightly]
|
|
inherits = "release"
|
|
strip = true
|
|
lto = "thin"
|
|
debug = false
|
|
incremental = false
|