Skip to content

Commit b420d15

Browse files
committed
Upgrade hdfs-native to 0.10
1 parent 680fd71 commit b420d15

File tree

5 files changed

+51
-200
lines changed

5 files changed

+51
-200
lines changed

Cargo.lock

+48-135
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdfs-native-object-store"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
authors = ["Adam Binford <adamq43@gmail.com>"]
66
homepage = "https://github.com/datafusion-contrib/hdfs-native-object-store"
@@ -15,7 +15,7 @@ async-trait = "0.1"
1515
bytes = "1"
1616
chrono = "0.4"
1717
futures = "0.3"
18-
hdfs-native = "0.9"
18+
hdfs-native = "0.10"
1919
object_store = "0.10"
2020
thiserror = "1"
2121
tokio = { version = "1", features = ["rt", "net", "io-util", "macros", "sync", "time"] }
@@ -25,6 +25,4 @@ env_logger = "0.10"
2525
serial_test = "2"
2626

2727
[features]
28-
kerberos = ["hdfs-native/kerberos"]
29-
3028
integration-test = ["hdfs-native/integration-test"]

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ Each release supports a certain minor release of both the `object_store` crate a
88
|---|---|---|
99
|0.9.x|0.9|0.9|
1010
|0.10.x|0.10|0.9|
11+
|0.11.x|0.10|0.10|
1112

1213
# Usage
1314
```rust
1415
use hdfs_native_object_store::HdfsObjectStore;
1516
let store = HdfsObjectStore::with_url("hdfs://localhost:9000")?;
1617
```
1718

18-
# Feature Flags
19-
`kerberos` - Enables Kerberos authentication support via the [libgssapi](https://docs.rs/libgssapi/latest/libgssapi) crate
20-
2119
# Documentation
2220
See [Documentation](https://docs.rs/hdfs-native-object-store).

0 commit comments

Comments
 (0)