-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 889 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 889 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
[package]
name = "strake-python"
version.workspace = true
license.workspace = true
edition = "2024"
[lib]
name = "_strake"
crate-type = ["cdylib"]
[dependencies]
strake-runtime = { path = "../crates/runtime" }
strake-common = { path = "../crates/common" }
strake-error = { path = "../crates/error" }
pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] }
arrow = { workspace = true, features = ["pyarrow", "prettyprint"] }
arrow-flight = { workspace = true, features = ["flight-sql-experimental"] }
tokio = { workspace = true }
futures = { workspace = true }
anyhow = { workspace = true }
prost = { workspace = true }
tonic = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tracing = { workspace = true }
async-trait.workspace = true
tracing-subscriber = { workspace = true }
aho-corasick = "1.1"