From 7a88a184c2ab8fbd1bde4e5e4204aedabfda0a1c Mon Sep 17 00:00:00 2001 From: Sayantan Chakraborty Date: Sun, 8 Dec 2024 22:54:22 +0530 Subject: [PATCH] CI: Small changes --- .github/workflows/runtest.yml | 4 +--- Cargo.toml | 2 +- README.md | 2 ++ ci/run-docker.sh | 0 4 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 ci/run-docker.sh diff --git a/.github/workflows/runtest.yml b/.github/workflows/runtest.yml index 970c7dd..72fdb88 100644 --- a/.github/workflows/runtest.yml +++ b/.github/workflows/runtest.yml @@ -38,7 +38,5 @@ jobs: shell: bash - name: Test - run: | - chmod 777 ./ci/run-docker.sh - ./ci/run-docker.sh ${{ inputs.arch }} ${{ inputs.target }} ${{ inputs.extra-features }} + run: ./ci/run-docker.sh ${{ inputs.arch }} ${{ inputs.target }} ${{ inputs.extra-features }} shell: bash \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 54dc9df..f228e4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,5 +19,5 @@ constant-time = [] cfg-if = "1.0.0" [dev-dependencies] -hex = "0.4.3" +hex = { version = "0.4.3", default-features = false } lazy_static = "1.5.0" diff --git a/README.md b/README.md index d275b82..db16cc0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Actions Status](https://github.com/sayantn/aes/actions/workflows/rust.yml/badge.svg)](https://github.com/sayantn/aes/actions) + This is a pure-Rust platform-agnostic [AES](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197-upd1.pdf) library, that is focused on reusability and optimal performance. diff --git a/ci/run-docker.sh b/ci/run-docker.sh old mode 100644 new mode 100755