24 lines
666 B
TOML
24 lines
666 B
TOML
[package]
|
|
name = "predicate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
arrow = { version = "13", features = ["prettyprint"] }
|
|
chrono = { version = "0.4", default-features = false }
|
|
data_types2 = { path = "../data_types2" }
|
|
datafusion = { path = "../datafusion" }
|
|
datafusion_util = { path = "../datafusion_util" }
|
|
itertools = "0.10"
|
|
observability_deps = { path = "../observability_deps" }
|
|
ordered-float = "3"
|
|
query_functions = { path = "../query_functions"}
|
|
schema = { path = "../schema" }
|
|
serde_json = "1.0.81"
|
|
snafu = "0.7"
|
|
sqlparser = "0.16.0"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
test_helpers = { path = "../test_helpers" }
|