chore: util workspace deps in more places (#792)

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
Ruihang Xia
2022-12-27 16:26:59 +08:00
committed by GitHub
parent 3978931b8e
commit 26a3e93ca7
30 changed files with 57 additions and 51 deletions

View File

@@ -23,7 +23,7 @@ python = [
]
[dependencies]
async-trait = "0.1"
async-trait.workspace = true
catalog = { path = "../catalog" }
common-catalog = { path = "../common/catalog" }
common-error = { path = "../common/error" }
@@ -38,9 +38,9 @@ datafusion-common = { workspace = true, optional = true }
datafusion-expr = { workspace = true, optional = true }
datafusion-physical-expr = { workspace = true, optional = true }
datatypes = { path = "../datatypes" }
futures = "0.3"
futures.workspace = true
futures-util = "0.3"
paste = { version = "1.0", optional = true }
paste = { workspace = true, optional = true }
query = { path = "../query" }
# TODO(discord9): This is a forked and tweaked version of RustPython, please update it to newest original RustPython After Update toolchain to 1.65
rustpython-ast = { git = "https://github.com/discord9/RustPython", optional = true, rev = "183e8dab" }