-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
47 lines (44 loc) · 1.43 KB
/
Cargo.toml
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
38
39
40
41
42
43
44
45
46
47
[workspace]
members = ["arro3-compute", "arro3-core", "arro3-io"]
# Note: we exclude pyo3-arrow from the top-level workspace because we have a
# circular dependency. pyo3-arrow is depended on by obstore to return arrow
# results as a list, which is depended on by arro3-io. This makes it hard to
# upgrade versions.
exclude = ["pyo3-arrow"]
resolver = "2"
[workspace.package]
# Package version for arro3-*, not for pyo3-arrow
version = "0.4.5"
authors = ["Kyle Barron <[email protected]>"]
edition = "2021"
homepage = "https://kylebarron.dev/arro3"
repository = "https://github.com/kylebarron/arro3"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow"]
categories = []
rust-version = "1.75"
[workspace.dependencies]
arrow = { version = "53", features = ["ffi"] }
arrow-array = "53"
arrow-buffer = "53"
arrow-cast = "53"
arrow-csv = "53"
arrow-ipc = { version = "53", features = ["lz4", "zstd"] }
arrow-schema = "53"
arrow-select = "53"
bytes = "1.7.0"
half = "2"
indexmap = "2"
numpy = "0.23"
object_store = "0.11"
parquet = "53"
pyo3 = { version = "0.23", features = ["macros", "indexmap"] }
# pyo3-arrow = "0.6"
pyo3-arrow = { path = "./pyo3-arrow" }
pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"] }
pyo3-file = "0.10"
pyo3-object_store = { git = "https://github.com/developmentseed/object-store-rs", rev = "bad34862a92849dd7b69c28cd4c225446d3d15ab" }
thiserror = "1.0.63"
[profile.release]
lto = true
codegen-units = 1