diff --git a/.github/workflows/aead.yml b/.github/workflows/aead.yml index ed1acd4b2..90b7d4cdd 100644 --- a/.github/workflows/aead.yml +++ b/.github/workflows/aead.yml @@ -36,6 +36,7 @@ jobs: target: ${{ matrix.target }} override: true - run: cargo build --target ${{ matrix.target }} --release --no-default-features + - run: cargo build --target ${{ matrix.target }} --release --no-default-features --features alloc - run: cargo build --target ${{ matrix.target }} --release --no-default-features --features stream test: diff --git a/aead/Cargo.toml b/aead/Cargo.toml index 38315a5a5..8883f592a 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -20,10 +20,9 @@ heapless = { version = "0.5", optional = true } blobby = { version = "0.3", optional = true } [features] -default = ["alloc"] +std = ["alloc"] alloc = [] dev = ["blobby"] -std = ["alloc"] stream = [] [package.metadata.docs.rs]