forked from xqlsystems/xarray-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 864 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (33 loc) · 864 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
37
[package]
name = "xarray_sql"
version = "0.2.1"
authors = ["Alex Merose"]
edition = "2021"
exclude = [
"perf_tests/*",
"demo/*",
".github/*",
".idea/*",
".claude/*",
".pre-commit-config.yaml",
".python-version",
"CONTRIBUTING.md",
"MANIFEST.in",
"uv.lock",
"xarray_sql/*_test.py",
]
[dependencies]
arrow = { version = "57.2.0", features = ["pyarrow"] }
async-stream = "0.3"
async-trait = "0.1"
datafusion = { version = "52.0.0" }
datafusion-ffi = { version = "52.0.0" }
futures = { version = "0.3" }
pyo3 = { version = "0.26.0", features = ["extension-module"] }
tokio = { version = "1.46.1", features = ["rt"] }
[build-dependencies]
pyo3-build-config = "0.26"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "xarray_sql"
crate-type = ["cdylib", "rlib"]