mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 12:22:55 +00:00
113 lines
3.5 KiB
TOML
113 lines
3.5 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 = "43.0" }
|
|
etcd-client = "0.11"
|
|
arrow-array = "43.0"
|
|
arrow-flight = "43.0"
|
|
arrow-schema = { version = "43.0", features = ["serde"] }
|
|
async-stream = "0.3"
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
datafusion = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
datafusion-common = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
datafusion-expr = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
datafusion-optimizer = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
datafusion-physical-expr = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
datafusion-sql = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
datafusion-substrait = { git = "https://github.com/waynexia/arrow-datafusion.git", rev = "2ceb7f927c40787773fdc466d6a4b79f3a6c0001" }
|
|
derive_builder = "0.12"
|
|
futures = "0.3"
|
|
futures-util = "0.3"
|
|
greptime-proto = { git = "https://github.com/GreptimeTeam/greptime-proto.git", rev = "3d8ac534a0c8fd1c6ec66d129345b44c95665ebc" }
|
|
itertools = "0.10"
|
|
lazy_static = "1.4"
|
|
once_cell = "1.18"
|
|
opentelemetry-proto = { version = "0.2", features = ["gen-tonic", "metrics"] }
|
|
parquet = "43.0"
|
|
paste = "1.0"
|
|
prost = "0.11"
|
|
rand = "0.8"
|
|
regex = "1.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sqlparser = "0.35"
|
|
tempfile = "3"
|
|
tokio = { version = "1.28", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["io-util", "compat"] }
|
|
toml = "0.7"
|
|
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
|