Lib.rs

› Users › tarcieri

Dashboard

  • Atom Feed
  • lib.rs profile
  • crates.io profile

Issues found

Based on crates you own that have been published to crates.io. The best way to monitor these issues is to subscribe to the atom feed in your RSS reader.

  • rustcrypto-ff

    • Imprecise dependency requirement byteorder = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as byteorder = "1.5.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      If you want to keep using truly minimal dependency requirements, please make sure you test them in CI with -Z minimal-versions Cargo option, because it's very easy to accidentally use a feature added in a later version.

      byteorder versions

    • License MIT/Apache-2.0 is not in SPDX syntax

      Use OR instead of /.

      SPDX license list

    • Missing categories

      Categories improve browsing of lib.rs and crates.io. Add categories = ["algorithms"] to the Cargo.toml.

      Even if there are no categories that fit precisely, pick one that is least bad. You can also propose new categories in crates.io issue tracker.

      List of available categories

    • Missing keywords

      Help users find your crates. Add keywords = ["finite-fields", "prime-field", "cryptography", "derive", "rfc-process"] (up to 5) to the Cargo.toml. Best keywords are alternative terms or their spellings that aren't in the name or description. Also add a keyword that precisely categorizes this crate and groups it with other similar crates.

    • Optional dependency 'bitvec' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'bitvec', 'byteorder', 'ff_derive' may have been unintentional.

      Crate features

  • rustcrypto-group

    • License MIT/Apache-2.0 is not in SPDX syntax

      Use OR instead of /.

      SPDX license list

    • Missing categories

      Categories improve browsing of lib.rs and crates.io. Add categories = ["cryptography"] to the Cargo.toml.

      List of available categories

    • Missing keywords

      Help users find your crates. Add keywords = ["elliptic-curve-group", "cryptography", "rfc-process", "fork", "github"] (up to 5) to the Cargo.toml. Best keywords are alternative terms or their spellings that aren't in the name or description. Also add a keyword that precisely categorizes this crate and groups it with other similar crates.

    • Optional dependency 'rand_xorshift' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'rand_xorshift', 'rand', 'memuse' may have been unintentional.

      Crate features

  • ml-dsa

    • Reported security advisory RUSTSEC-2025-0144

      Timing side-channel in ML-DSA decomposition

      All crate audits

  • aes-kw, ssh-cipher

    • docs.rs build failed

      docs.rs site failed to build the crate, so users will have trouble finding the documentation. Docs.rs supports multiple platforms and custom configurations, so you can make the build work even if normal crate usage has special requirements.

      Docs.rs doesn't need to run or even link any code, so system dependencies can simply be skipped. You can also set cfg() flags just for docs.rs and use them to hide problematic code.

      Detecting docs.rs

  • spki

    • Imprecise dependency requirement base64ct = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as base64ct = "1.8.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      base64ct versions

    • Optional dependency 'digest' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'digest', 'sha2' may have been unintentional.

      Crate features

  • crypto-bigint, sec1, dsa, x448

    • Imprecise dependency requirement zeroize = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as zeroize = "1.8.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      zeroize versions

  • ml-kem, bp384, bp256

    • Dependency criterion 0.7 is significantly outdated

      Upgrade to 0.8.2 to get all the fixes, and avoid causing duplicate dependencies in projects.

      In Cargo, different 0.x versions are considered incompatible, so this is a semver-major upgrade.

      criterion versions

  • pkcs8

    • Optional dependency 'pkcs5' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'pkcs5', 'rand_core' may have been unintentional.

      Crate features

  • pkcs8, ctutils, ssh-cipher, bign-genk

    • Imprecise dependency requirement subtle = 2

      Cargo does not always pick latest versions of dependencies! Specify the version as subtle = "2.6.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      subtle versions

  • primeorder

    • Optional dependency 'serdect' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Feature 'serdect' may have been unintentional.

      Crate features

  • platforms

    • Imprecise dependency requirement serde = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as serde = "1.0.228". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      This crate does not bump semver-minor when adding new features, so to be safe you get all the features/APIs/fixes that your crate depends on, require a more specific patch version.

      serde versions

  • slh-dsa

    • Dependency criterion 0.7 is significantly outdated

      Upgrade to the latest version to get all the fixes, and avoid causing duplicate dependencies in projects.

      Easy way to bump dependencies: cargo install cargo-edit; cargo upgrade -i; Also check out Dependabot service on GitHub.

      criterion versions

  • hybrid-array

    • Imprecise dependency requirement arbitrary = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as arbitrary = "1.4.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      arbitrary versions

  • p192

    • Imprecise dependency requirement hex-literal = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as hex-literal = "1.1.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      hex-literal versions

    • Optional dependency 'ecdsa-core' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'ecdsa-core', 'hex-literal', 'serdect' may have been unintentional.

      Crate features

  • cpubits

    • Missing categories

      Categories improve browsing of lib.rs and crates.io. Add categories = ["rust-patterns"] to the Cargo.toml.

      List of available categories

    • Missing keywords

      Help users find your crates. Add keywords = ["detect-target", "macro-rules", "size", "compile-time", "heuristics"] (up to 5) to the Cargo.toml. Best keywords are alternative terms or their spellings that aren't in the name or description. Also add a keyword that precisely categorizes this crate and groups it with other similar crates.

  • ecdsa

    • Optional dependency 'spki' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Feature 'spki' may have been unintentional.

      Crate features

  • signature

    • Cryptocurrency crate

      This crate has been classified as related to cyrptocurrencies. If you believe this categorization is a mistake, then please review crate's categories and keywords, or file a bug. If it is related, then please reconsider your choices, and yank it.

      Author of this site is firmly convinced that cryptocurrencies have a net-negative effect on society.

  • bignp256

    • Imprecise dependency requirement hex-literal = 1

      Cargo does not always pick latest versions of dependencies! Specify the version as hex-literal = "1.1.0". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      hex-literal versions

    • Optional dependency 'sec1' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Feature 'sec1' may have been unintentional.

      Crate features

  • bp384

    • Optional dependency 'ecdsa' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'ecdsa', 'sha2' may have been unintentional.

      Crate features

  • bp256

    • Optional dependency 'sha2' exposed as an implicit feature

      Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using dep: syntax. Features 'sha2', 'ecdsa' may have been unintentional.

      Crate features

  • der_derive

    • Imprecise dependency requirement syn = 2

      Cargo does not always pick latest versions of dependencies! Specify the version as syn = "2.0.117". If Cargo.lock ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using the minimal-versions flag, used by users of old Rust versions.

      syn versions

  • zhash

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/zhash ) failed. Please try again later.

  • ssh-key

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ssh-key ). Please try again later.

  • yubikey

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/yubikey ) failed. Please try again later.

  • cargo-audit

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/cargo-audit ). Please try again later.

  • rustsec

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/rustsec ). Please try again later.

  • frodo-kem

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/frodo-kem ) failed. Please try again later.

  • balloon-hash

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/balloon-hash ) failed. Please try again later.

  • ssh-encoding

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/ssh-encoding ) failed. Please try again later.

  • elliptic-curve

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/elliptic-curve ) failed. Please try again later.

  • ed448

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/ed448 ) failed. Please try again later.

  • rfc6979

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/rfc6979 ) failed. Please try again later.

  • xaes-256-gcm

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/xaes-256-gcm ) failed. Please try again later.

  • ocb3

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/ocb3 ) failed. Please try again later.

  • eax

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/eax ) failed. Please try again later.

  • deoxys

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/deoxys ). Please try again later.

  • aes-siv

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/aes-siv ). Please try again later.

  • aes-gcm-siv

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/aes-gcm-siv ). Please try again later.

  • aes-gcm

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/aes-gcm ). Please try again later.

  • one-step-kdf

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/one-step-kdf ). Please try again later.

  • kbkdf

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/kbkdf ). Please try again later.

  • rustcrypto-ff_derive

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/rustcrypto-ff_derive ). Please try again later.

  • kdf

    • Internal error

      We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/kdf ). Please try again later.

  • k256

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/k256 ) failed. Please try again later.

  • cms

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/cms ) failed. Please try again later.

  • x509-cert

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/x509-cert ) failed. Please try again later.

  • aucpace

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/aucpace ) failed. Please try again later.

  • pkcs5

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/pkcs5 ) failed. Please try again later.

  • cargo-lock

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/cargo-lock ) failed. Please try again later.

  • pake

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/pake ) failed. Please try again later.

  • base64ct

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/base64ct ) failed. Please try again later.

  • pkcs12

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/pkcs12 ) failed. Please try again later.

  • password-auth

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/password-auth ) failed. Please try again later.

  • const-oid

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/const-oid ). Please try again later.

  • serdect

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/serdect ). Please try again later.

  • base16ct

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/base16ct ). Please try again later.

  • zeroize_derive

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/zeroize_derive ). Please try again later.

  • pem-rfc7468

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/pem-rfc7468 ). Please try again later.

  • cvss

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cvss ). Please try again later.

  • crypto_box

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crypto_box ). Please try again later.

  • crypto_secretbox

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crypto_secretbox ). Please try again later.

  • zeroize

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/zeroize ). Please try again later.

  • pkcs1

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/pkcs1 ). Please try again later.

  • cargo-geiger

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cargo-geiger ). Please try again later.

  • auditable-info

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/auditable-info ). Please try again later.

  • auditable-serde

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/auditable-serde ). Please try again later.

  • ssh-protocol

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ssh-protocol ). Please try again later.

  • ssh-derive

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ssh-derive ). Please try again later.

  • crypton

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crypton ). Please try again later.

  • geiger

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/geiger ). Please try again later.

  • cargo-geiger-serde

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cargo-geiger-serde ). Please try again later.

  • bip32

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/bip32 ). Please try again later.

  • dilithium

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/dilithium ). Please try again later.

  • tai64

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/tai64 ). Please try again later.

  • trellis_m4

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/trellis_m4 ). Please try again later.

  • auditable-extract

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/auditable-extract ). Please try again later.

  • cmpv2

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cmpv2 ). Please try again later.

  • crmf

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crmf ). Please try again later.

  • aarch64-dit

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/aarch64-dit ). Please try again later.

  • p256k

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/p256k ). Please try again later.

  • async-signature

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/async-signature ). Please try again later.

  • rustls-rustcrypto

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rustls-rustcrypto ). Please try again later.

  • kyber

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/kyber ). Please try again later.

  • pkcs10

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/pkcs10 ). Please try again later.

  • rustsec-admin

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rustsec-admin ). Please try again later.

  • x509-ocsp

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/x509-ocsp ). Please try again later.

  • bign256

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/bign256 ). Please try again later.

  • signature_derive

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/signature_derive ). Please try again later.

  • micromath

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/micromath ). Please try again later.

  • rmdb

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/rmdb ) failed. Please try again later.

  • cargo-auditable

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/cargo-auditable ) failed. Please try again later.

  • xmss

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/xmss ) failed. Please try again later.

  • sha2

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/sha2 ). Please try again later.

  • ring-compat

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ring-compat ). Please try again later.

  • jose-jws

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/jose-jws ). Please try again later.

  • jose-jwk

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/jose-jwk ). Please try again later.

  • jose-jwa

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/jose-jwa ). Please try again later.

  • jose-b64

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/jose-b64 ). Please try again later.

  • signatory

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/signatory ). Please try again later.

  • yubihsm

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/yubihsm ). Please try again later.

  • crypto_kx

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crypto_kx ). Please try again later.

  • crypto_secretstream

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crypto_secretstream ). Please try again later.

  • crypto

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/crypto ). Please try again later.

  • x509-tsp

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/x509-tsp ). Please try again later.

  • ssh-crypto

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ssh-crypto ). Please try again later.

  • gss-api

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/gss-api ). Please try again later.

  • xsalsa20poly1305

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/xsalsa20poly1305 ). Please try again later.

  • pkcs7

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/pkcs7 ). Please try again later.

  • zlint

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/zlint ). Please try again later.

  • cargo-edit-9

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cargo-edit-9 ). Please try again later.

  • yubikey-cli

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/yubikey-cli ). Please try again later.

  • sealed-trait-test

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/sealed-trait-test ). Please try again later.

  • ed448-goldilocks

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/ed448-goldilocks ) failed. Please try again later.

  • der

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/der ) failed. Please try again later.

  • current_platform

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/current_platform ). Please try again later.

  • concat-kdf

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/concat-kdf ). Please try again later.

  • x501

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/x501 ). Please try again later.

  • ripemd256

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ripemd256 ). Please try again later.

  • cargo-sign

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cargo-sign ). Please try again later.

  • yubikey-piv

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/yubikey-piv ). Please try again later.

  • rs-303

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rs-303 ). Please try again later.

  • cosmon

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cosmon ). Please try again later.

  • ring-pwhash

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ring-pwhash ). Please try again later.

  • blake2b

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/blake2b ). Please try again later.

  • ring-aead

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ring-aead ). Please try again later.

  • miscreant

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/miscreant ). Please try again later.

  • signatory-sodiumoxide

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/signatory-sodiumoxide ). Please try again later.

  • signatory-secp256k1

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/signatory-secp256k1 ). Please try again later.

  • signatory-ring

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/signatory-ring ). Please try again later.

  • xstream

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/xstream ). Please try again later.

  • minc

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/minc ). Please try again later.

  • brainpool

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/brainpool ). Please try again later.

  • b64ct

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/b64ct ). Please try again later.

  • atsamd51g19a

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/atsamd51g19a ). Please try again later.

  • cryptography

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cryptography ). Please try again later.

  • signatory-dalek

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/signatory-dalek ). Please try again later.

  • secp256k1-ecdsa

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/secp256k1-ecdsa ). Please try again later.

  • accelerometer

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/accelerometer ). Please try again later.

  • aes-ccm

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/aes-ccm ). Please try again later.

  • collectable

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/collectable ). Please try again later.

  • collectible

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/collectible ). Please try again later.

  • veriform

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/veriform ). Please try again later.

  • vint64

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/vint64 ). Please try again later.

  • cryptouri

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cryptouri ). Please try again later.

  • adxl343

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/adxl343 ). Please try again later.

  • rustcrypto

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rustcrypto ). Please try again later.

  • ristretto

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ristretto ). Please try again later.

  • weierstrass

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/weierstrass ). Please try again later.

  • montgomery

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/montgomery ). Please try again later.

  • koblitz

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/koblitz ). Please try again later.

  • edwards

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/edwards ). Please try again later.

  • treecap

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/treecap ). Please try again later.

  • bats

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/bats ). Please try again later.

  • hc-128

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/hc-128 ). Please try again later.

  • rustsec-example-crate

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rustsec-example-crate ). Please try again later.

  • rustsec-test-crate

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rustsec-test-crate ). Please try again later.

  • rustsec-cli

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/rustsec-cli ). Please try again later.

  • jmse

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/jmse ). Please try again later.

  • repro

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/repro ) failed. Please try again later.

  • cargo-sandbox

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/cargo-sandbox ) failed. Please try again later.

  • cargo-repro

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/cargo-repro ) failed. Please try again later.

  • neobirth

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/neobirth ) failed. Please try again later.

  • signatory-yubihsm

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/signatory-yubihsm ) failed. Please try again later.

  • purezen

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/purezen ) failed. Please try again later.

  • zengarden

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/zengarden ) failed. Please try again later.

  • zengarden-sys

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/zengarden-sys ) failed. Please try again later.

  • sear

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/sear ) failed. Please try again later.

  • conjure

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/conjure ) failed. Please try again later.

  • iq-crates

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/iq-crates ) failed. Please try again later.

  • scp03

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/scp03 ) failed. Please try again later.

  • microcrates-bytes

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/microcrates-bytes ) failed. Please try again later.

  • embedrs-bytes

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/embedrs-bytes ) failed. Please try again later.

  • yubihsm-client

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/yubihsm-client ) failed. Please try again later.

  • primefield

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/primefield ) failed. Please try again later.

  • drdns

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/drdns ) failed. Please try again later.

  • keyuri

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/keyuri ) failed. Please try again later.

  • minclib

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/minclib ) failed. Please try again later.

  • verihash

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/verihash ) failed. Please try again later.

  • placer

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/placer ) failed. Please try again later.

  • polyval

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/polyval ) failed. Please try again later.

  • zser

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/zser ) failed. Please try again later.

  • tjson

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/tjson ) failed. Please try again later.

  • sivchain

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/sivchain ) failed. Please try again later.

  • zsession

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/zsession ) failed. Please try again later.

  • zcred

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/zcred ) failed. Please try again later.

  • rustsec-advisory-db

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/rustsec-advisory-db ) failed. Please try again later.

  • macaroons

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/macaroons ) failed. Please try again later.

  • cargo-advisory

    • Internal error

      We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/cargo-advisory ) failed. Please try again later.

  • objecthash

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/objecthash ). Please try again later.

  • ithos

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/ithos ). Please try again later.

  • cryptosphere

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/cryptosphere ). Please try again later.

  • confusion

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/confusion ). Please try again later.

  • auditable

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/auditable ). Please try again later.

  • mintscan

    • Internal error

      We couldn't check this crate at this time, because: timed out getting crate for validation Origin( lib.rs/crates/mintscan ). Please try again later.

No issues found in: ascon sha-crypt hash2curve gift-cipher module-lattice kem cmov rabbit hc-256 shabal sha1 mcf universal-hash base32ct x-wing dhkem cpufeatures lms-signature

If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
status = "deprecated"
to their Cargo.toml.

Atom Feed.

The data is refreshed only every couple of hours. The page is based on multiple data sources, heuristics, and manually curated data.

Lib.rs is an unofficial list of Rust/Cargo crates. Created by kornelski. Not affiliated with the Rust Project.