-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (38 loc) · 1.23 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
[workspace]
members = ["obstore"]
# Note: pyo3-object_store is _not_ a member of this workspace because we need to
# patch the object_store version for Python to export a list stream. This list
# stream is implemented in https://github.com/apache/arrow-rs/pull/6619 and will
# be included in object_store's next major release.
#
# But pyo3-object_store gets published to crates.io, which can't have git
# dependencies.
exclude = ["pyo3-object_store"]
resolver = "2"
[workspace.package]
authors = ["Kyle Barron <[email protected]>"]
edition = "2021"
homepage = "https://developmentseed.org/obstore"
repository = "https://github.com/developmentseed/obstore"
license = "MIT OR Apache-2.0"
keywords = ["python"]
categories = []
rust-version = "1.75"
[workspace.dependencies]
bytes = "1.7.0"
chrono = "0.4.38"
futures = "0.3.31"
http = "1.1"
indexmap = "2"
object_store = "0.11"
pyo3 = { version = "0.22", features = ["macros", "indexmap"] }
pyo3-async-runtimes = { version = "0.22", features = ["tokio-runtime"] }
pyo3-file = "0.9"
thiserror = "1"
tokio = "1.40"
url = "2"
[patch.crates-io]
object_store = { git = "https://github.com/kylebarron/arrow-rs", branch = "kyle/list-returns-static-stream" }
[profile.release]
lto = true
codegen-units = 1