refactor: use workspace dependencies for internal modules (#2119)

* refactor: use workspace dependencies for internal modules

* fix: resolve issue with mock module in datanode

* refactor: update test modules
This commit is contained in:
Ning Sun
2023-08-08 19:02:34 +08:00
committed by GitHub
parent 815a6d2d61
commit c39de9072f
49 changed files with 538 additions and 483 deletions

View File

@@ -7,12 +7,12 @@ license.workspace = true
[dependencies]
arc-swap = "1.0"
chrono-tz = "0.6"
common-error = { path = "../error" }
common-function-macro = { path = "../function-macro" }
common-query = { path = "../query" }
common-time = { path = "../time" }
common-error = { workspace = true }
common-function-macro = { workspace = true }
common-query = { workspace = true }
common-time = { workspace = true }
datafusion.workspace = true
datatypes = { path = "../../datatypes" }
datatypes = { workspace = true }
libc = "0.2"
num = "0.4"
num-traits = "0.2"