crepererum commented on code in PR #585:
URL: 
https://github.com/apache/arrow-rs-object-store/pull/585#discussion_r2769090670


##########
.github/workflows/ci.yml:
##########
@@ -39,6 +39,10 @@ jobs:
       - uses: actions/checkout@v6
       - name: Setup Clippy
         run: rustup component add clippy
+      - name: Check no crypto crates
+        run:
+          cargo tree --features 
gcp-no-crypto,aws-no-crypto,azure-no-crypto,http-no-crypto \
+          | grep -qE '\b(ring|openssl)\b' && { echo "❌ disallowed crate 
found"; exit 1; } || echo "✅ no disallowed crates"

Review Comment:
   It seems that cargo-deny should be able to do that, but I DON'T think it can 
ban dependencies based on features:
   
   https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to