2021-09-14 15:12:56 +00:00
|
|
|
[package]
|
|
|
|
name = "predicate"
|
|
|
|
version = "0.1.0"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-09-14 15:12:56 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-05-05 00:21:02 +00:00
|
|
|
arrow = { version = "13", features = ["prettyprint"] }
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-05-04 19:56:17 +00:00
|
|
|
data_types2 = { path = "../data_types2" }
|
2021-09-14 15:12:56 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
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-05-02 14:27:25 +00:00
|
|
|
ordered-float = "3"
|
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-05-04 14:10:35 +00:00
|
|
|
serde_json = "1.0.81"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-04-04 11:01:14 +00:00
|
|
|
sqlparser = "0.16.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" }
|