Skip to content

Commit

Permalink
feat: Configure optional feature for Python package (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
yjshen authored Apr 2, 2024
1 parent 5542b15 commit adedc18
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ name = "hdfs_native._internal"
[dependencies]
bytes = "1.4"
env_logger = "0.10"
hdfs-native = { path = "../crates/hdfs-native", features=["kerberos"] }
hdfs-native = { path = "../crates/hdfs-native" }
log = "0.4"
pyo3 = { version = "0.20", features = ["extension-module", "abi3", "abi3-py38"] }
thiserror = "1.0.43"
tokio = { version = "1.28", features = ["rt-multi-thread"] }

[features]
kerberos = ["hdfs-native/kerberos"]

0 comments on commit adedc18

Please sign in to comment.