24 lines
623 B
TOML
24 lines
623 B
TOML
[package]
|
|
name = "predicate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
arrow = { version = "6.0", features = ["prettyprint"] }
|
|
chrono = "0.4"
|
|
data_types = { path = "../data_types" }
|
|
datafusion = { path = "../datafusion" }
|
|
datafusion_util = { path = "../datafusion_util" }
|
|
schema = { path = "../schema" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
ordered-float = "2"
|
|
regex = "1"
|
|
serde_json = "1.0.72"
|
|
snafu = "0.6.9"
|
|
sqlparser = "0.12.0"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
test_helpers = { path = "../test_helpers" }
|
|
tokio = { version = "1.13", features = ["macros"] }
|