diff --git a/.github/workflows/rust-test.yml b/.github/workflows/rust-test.yml index f5bb3f9..8ca8b14 100644 --- a/.github/workflows/rust-test.yml +++ b/.github/workflows/rust-test.yml @@ -44,7 +44,7 @@ jobs: run: sudo apt-get install -y libkrb5-dev libgsasl-dev - name: build and lint with clippy - run: cargo clippy --tests --features kerberos,token,integration-test + run: cargo clippy --tests --features kerberos,integration-test - name: Check docs run: cargo doc @@ -55,11 +55,8 @@ jobs: - name: Check kerberos run: cargo check --features kerberos - - name: Check token - run: cargo check --features token - - name: Check all features - run: cargo check --features kerberos,token,integration-test + run: cargo check --features kerberos,integration-test test: strategy: @@ -102,4 +99,4 @@ jobs: echo "$GITHUB_WORKSPACE/hadoop-3.3.6/bin" >> $GITHUB_PATH - name: Run tests - run: cargo test --features kerberos,token,integration-test + run: cargo test --features kerberos,integration-test diff --git a/crates/hdfs-native/src/lib.rs b/crates/hdfs-native/src/lib.rs index e447943..ab2f89f 100644 --- a/crates/hdfs-native/src/lib.rs +++ b/crates/hdfs-native/src/lib.rs @@ -25,8 +25,6 @@ //! //! # Optional cargo package features //! - `kerberos` - include support for Kerberos authentication. Uses the libgssapi package. Supports all RPC authentication and encryption methods. -//! - `token` - include support for Token authentication. Uses the gsasl native library. Only -//! supports authentication, not integrity or privacy modes. pub mod client; pub(crate) mod common;