Skip to content

Commit

Permalink
Upgrade hdfs-native to 0.10 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimahriman committed Jun 19, 2024
1 parent 680fd71 commit c554996
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 203 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
run: sudo apt-get install -y libkrb5-dev

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

- name: Check docs
run: cargo doc

- name: Check all features
run: cargo check --all-targets --features kerberos,integration-test
run: cargo check --all-targets --features integration-test

test:
strategy:
Expand Down Expand Up @@ -94,4 +94,4 @@ jobs:
echo "$GITHUB_WORKSPACE/hadoop-3.4.0/bin" >> $GITHUB_PATH
- name: Run tests
run: cargo test --features kerberos,integration-test
run: cargo test --features integration-test
183 changes: 48 additions & 135 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdfs-native-object-store"
version = "0.10.0"
version = "0.11.0"
edition = "2021"
authors = ["Adam Binford <[email protected]>"]
homepage = "https://github.com/datafusion-contrib/hdfs-native-object-store"
Expand All @@ -15,7 +15,7 @@ async-trait = "0.1"
bytes = "1"
chrono = "0.4"
futures = "0.3"
hdfs-native = "0.9"
hdfs-native = "0.10"
object_store = "0.10"
thiserror = "1"
tokio = { version = "1", features = ["rt", "net", "io-util", "macros", "sync", "time"] }
Expand All @@ -25,6 +25,4 @@ env_logger = "0.10"
serial_test = "2"

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

integration-test = ["hdfs-native/integration-test"]
Loading

0 comments on commit c554996

Please sign in to comment.