-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
34 lines (30 loc) · 954 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
33
34
[package]
name = "hdfs-native-python"
version = "0.9.4"
edition = "2021"
authors = ["Adam Binford <adamq43@gmail.com>"]
homepage = "https://github.com/Kimahriman/hdfs-native"
repository = "https://github.com/Kimahriman/hdfs-native"
keywords = ["hadoop", "hdfs"]
description = "Python bindings for native HDFS client implementation in Rust"
license = "Apache-2.0"
publish = false
exclude = [
".gitignore",
".github/",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "_internal"
crate-type = ["cdylib"]
doc = false
[package.metadata.maturin]
name = "hdfs_native._internal"
[dependencies]
bytes = { workspace = true }
env_logger = "0.10"
hdfs-native = { path = "../rust" }
log = { workspace = true }
pyo3 = { version = "0.20", features = ["extension-module", "abi3", "abi3-py38"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }