2021-09-14 15:12:56 +00:00
|
|
|
[package]
|
|
|
|
name = "predicate"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-09-14 15:12:56 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2021-09-14 15:12:56 +00:00
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2022-01-27 14:44:49 +00:00
|
|
|
itertools = "0.10"
|
2021-09-14 15:12:56 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-04-26 17:30:27 +00:00
|
|
|
query_functions = { path = "../query_functions"}
|
2022-01-27 14:44:49 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2023-01-03 14:28:15 +00:00
|
|
|
sqlparser = "0.30.0"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-09-14 15:12:56 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-15 16:18:05 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|