Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade hdfs-native to 0.10 #6

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading