-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (18 loc) · 898 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "partiql-rust-py"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "partiql_rust_py"
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.19.0"
partiql-parser = { git = "https://github.com/partiql/partiql-lang-rust.git", features=["serde"] }
partiql-value = { git = "https://github.com/partiql/partiql-lang-rust.git", features=["serde"] }
partiql-logical = { git = "https://github.com/partiql/partiql-lang-rust.git", features=["serde"] }
partiql-catalog = { git = "https://github.com/partiql/partiql-lang-rust.git" }
partiql-logical-planner = { git = "https://github.com/partiql/partiql-lang-rust.git" }
partiql-eval = { git = "https://github.com/partiql/partiql-lang-rust.git" }
partiql-extension-ion = { git = "https://github.com/partiql/partiql-lang-rust.git" }
ion-rs = "0.18"