From 8d993ef7f399f031aee35f2b228a1ba15d646e8f Mon Sep 17 00:00:00 2001 From: Adam Binford Date: Sun, 24 Mar 2024 08:47:28 -0400 Subject: [PATCH] Remove token from CI --- .github/workflows/rust-test.yml | 9 +++------ crates/hdfs-native/src/lib.rs | 2 -- 2 files changed, 3 insertions(+), 8 deletions(-) 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;