Skip to content

Commit adedc18

Browse files
authored
feat: Configure optional feature for Python package (#91)
1 parent 5542b15 commit adedc18

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

python/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ name = "hdfs_native._internal"
2727
[dependencies]
2828
bytes = "1.4"
2929
env_logger = "0.10"
30-
hdfs-native = { path = "../crates/hdfs-native", features=["kerberos"] }
30+
hdfs-native = { path = "../crates/hdfs-native" }
3131
log = "0.4"
3232
pyo3 = { version = "0.20", features = ["extension-module", "abi3", "abi3-py38"] }
3333
thiserror = "1.0.43"
3434
tokio = { version = "1.28", features = ["rt-multi-thread"] }
35+
36+
[features]
37+
kerberos = ["hdfs-native/kerberos"]

0 commit comments

Comments
 (0)