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-03-24 15:27:36 +00:00
|
|
|
arrow = { version = "11", features = ["prettyprint"] }
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2021-09-14 15:12:56 +00:00
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
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" }
|
2021-09-23 16:43:16 +00:00
|
|
|
ordered-float = "2"
|
2021-09-14 15:12:56 +00:00
|
|
|
regex = "1"
|
2022-01-21 14:40:10 +00:00
|
|
|
regex-syntax = "0.6.25"
|
2022-01-27 14:44:49 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-02-14 20:42:54 +00:00
|
|
|
serde_json = "1.0.79"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-03-10 14:28:48 +00:00
|
|
|
sqlparser = "0.15.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" }
|
2022-02-22 16:27:43 +00:00
|
|
|
tokio = { version = "1.17", features = ["macros", "parking_lot"] }
|