-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 909 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
resolver = "2"
members = [
"arrow-kq-ext",
"datafusion-kql",
"kq",
"kqlparser"
]
[workspace.package]
authors = ["Iwan Timmer <irtimmer@gmail.com>"]
edition = "2021"
homepage = "https://github.com/irtimmer/rust-kql"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/irtimmer/rust-kql"
version = "0.0.4"
[workspace.dependencies]
arrow-array = "55.0.0"
arrow-kq-ext = { path = "arrow-kq-ext", version = "0.0.4" }
arrow-schema = "55.0.0"
datafusion = { version = "48.0.0", features = ["avro"] }
datafusion-catalog = "48.0.0"
datafusion-common = "48.0.0"
datafusion-execution = "48.0.0"
datafusion-expr = "48.0.0"
datafusion-functions = "48.0.0"
datafusion-functions-table = "48.0.0"
datafusion-functions-aggregate = "48.0.0"
kqlparser = { path = "kqlparser", version = "0.0.4" }
datafusion-kql = { path = "datafusion-kql", version = "0.0.4" }
log = "^0.4"