-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 913 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
34
35
36
[package]
name = "executor"
version = "25.0.0"
edition = "2021"
[lib]
crate-type = ["lib"]
doctest = false
[dependencies]
ahash = "0.8"
anyhow = "1.0"
datafusion = { workspace = true }
datafusion-sql = { workspace = true }
fasthash = "0.4"
futures = "0.3"
libc = "0.2"
once_cell = "1.21"
rmp = "0.8"
rust-fsm = { version = "0.7", features = ["diagram"] }
smallvec = { version = "1.14", features = ["const_generics", "union"] }
smol_str = "0.3"
thiserror = "2.0"
tokio = { version = "1.42", features = ["full"] }
tracing = { version = "0.1" }
protocol = { path = "../protocol", version = "25.0" }
common = { path = "../common", version = "25.0" }
async-trait = "0.1"
datafusion-catalog = "44.0"
datafusion-physical-expr = "44.0.0"
datafusion-execution = "44.0.0"
storage = { path = "../storage", version = "25.0" }
pgrx-pg-sys = { version = "0.16.0", package = "pgrx-pg-sys" }
[dev-dependencies]
bitflags = "2"