-
Notifications
You must be signed in to change notification settings - Fork 457
/
Copy pathCargo.toml
33 lines (28 loc) · 930 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
23
24
25
26
27
28
29
30
31
32
[package]
name = "deltalake-python"
version = "0.5.2"
authors = ["Qingping Hou <dave2008713@gmail.com>"]
homepage = "https://github.com/delta-io/delta-rs"
license = "Apache-2.0"
description = "Native Delta Lake Python binding based on delta-rs with Pandas integration"
readme = "README.md"
edition = "2018"
keywords = ["deltalake", "delta", "datalake", "pandas", "arrow"]
[lib]
name = "deltalake"
crate-type = ["cdylib"]
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread"] }
env_logger = "0"
# reqwest is pulled in by azure sdk, but not used by python binding itself
# for binary wheel best practice, statically link openssl
reqwest = { version = "*", features = ["native-tls-vendored"] }
serde_json = "1"
arrow = { version = "5" }
[dependencies.pyo3]
version = "0.14"
features = ["extension-module", "abi3", "abi3-py36"]
[dependencies.deltalake]
path = "../rust"
version = "0"
features = ["s3", "azure"]