mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +00:00
* fix: add taplo.toml * fix: introduce taplo.toml & sort cargo.toml * chore: remove option in ci too
35 lines
877 B
TOML
35 lines
877 B
TOML
[package]
|
|
name = "substrait"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-recursion = "1.0"
|
|
async-trait.workspace = true
|
|
bytes = "1.1"
|
|
catalog = { path = "../../catalog" }
|
|
common-catalog = { path = "../catalog" }
|
|
common-error = { path = "../error" }
|
|
common-telemetry = { path = "../telemetry" }
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion-substrait.workspace = true
|
|
datafusion.workspace = true
|
|
datatypes = { path = "../../datatypes" }
|
|
futures = "0.3"
|
|
promql = { path = "../../promql" }
|
|
prost.workspace = true
|
|
session = { path = "../../session" }
|
|
snafu.workspace = true
|
|
table = { path = "../../table" }
|
|
|
|
[dependencies.substrait_proto]
|
|
package = "substrait"
|
|
version = "0.12"
|
|
|
|
[dev-dependencies]
|
|
datatypes = { path = "../../datatypes" }
|
|
table = { path = "../../table" }
|
|
tokio.workspace = true
|