2021-09-14 15:12:56 +00:00
|
|
|
[package]
|
|
|
|
name = "predicate"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-04 08:55:38 +00:00
|
|
|
arrow = { version = "5.5", features = ["prettyprint"] }
|
2021-09-14 15:12:56 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2021-09-15 14:35:51 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
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"
|
2021-10-01 20:37:22 +00:00
|
|
|
serde_json = "1.0.67"
|
2021-09-14 15:12:56 +00:00
|
|
|
snafu = "0.6.9"
|
2021-10-18 14:11:02 +00:00
|
|
|
sqlparser = "0.12.0"
|
2021-09-14 15:12:56 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-15 16:18:05 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2021-09-14 15:12:56 +00:00
|
|
|
tokio = { version = "1.11", features = ["macros"] }
|