Skip to content

Commit c554996

Browse files
authored
Upgrade hdfs-native to 0.10 (#6)
1 parent 680fd71 commit c554996

File tree

6 files changed

+54
-203
lines changed

6 files changed

+54
-203
lines changed

.github/workflows/rust-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
run: sudo apt-get install -y libkrb5-dev
4646

4747
- name: build and lint with clippy
48-
run: cargo clippy --all-targets --features kerberos,integration-test -- -D warnings
48+
run: cargo clippy --all-targets --features integration-test -- -D warnings
4949

5050
- name: Check docs
5151
run: cargo doc
5252

5353
- name: Check all features
54-
run: cargo check --all-targets --features kerberos,integration-test
54+
run: cargo check --all-targets --features integration-test
5555

5656
test:
5757
strategy:
@@ -94,4 +94,4 @@ jobs:
9494
echo "$GITHUB_WORKSPACE/hadoop-3.4.0/bin" >> $GITHUB_PATH
9595
9696
- name: Run tests
97-
run: cargo test --features kerberos,integration-test
97+
run: cargo test --features integration-test

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 <[email protected]>"]
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"]

0 commit comments

Comments
 (0)