Skip to content

Commit 1b0cee8

Browse files
authored
base16ct: remove std feature (#2004)
It's no longer used now that we support `core::error::Error`
1 parent be18550 commit 1b0cee8

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/base16ct.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ jobs:
4040
toolchain: ${{ matrix.rust }}
4141
targets: ${{ matrix.target }}
4242
- uses: RustCrypto/actions/cargo-hack-install@master
43-
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features std
43+
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset
4444

4545
minimal-versions:
4646
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4747
with:
48-
working-directory: ${{ github.workflow }}
48+
working-directory: ${{ github.workflow }}
4949

5050
test:
5151
runs-on: ubuntu-latest

base16ct/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ rust-version = "1.85"
1919

2020
[features]
2121
alloc = []
22-
std = ["alloc"]
2322

2423
[package.metadata.docs.rs]
2524
all-features = true

base16ct/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262
#[cfg(feature = "alloc")]
6363
#[macro_use]
6464
extern crate alloc;
65-
#[cfg(feature = "std")]
66-
extern crate std;
6765

6866
/// Function for decoding and encoding lower Base16 (hex)
6967
pub mod lower;

0 commit comments

Comments
 (0)