We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The mbedtls-sys-auto crate specifies links = "mbedtls" (https://github.com/fortanix/rust-mbedtls/blob/master/mbedtls-sys/Cargo.toml#L14). In fact it links against three C libraries: libmbedcrypto.a, libmbedtls.a, libmbedx509.a.
mbedtls-sys-auto
links = "mbedtls"
libmbedcrypto.a
libmbedtls.a
libmbedx509.a
There is another publicly available Rust crate, psa-crypto-sys, that links against libmbedcrypto.a only. That crate specifies links = "mbedcrypto" (https://github.com/parallaxsecond/rust-psa-crypto/blob/main/psa-crypto-sys/Cargo.toml#L12).
psa-crypto-sys
links = "mbedcrypto"
Perhaps it would be better for mbedtls-sys-auto to specify links = "mbedcrypto" so that the collision with psa-crypto-sys is detected by Cargo.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
mbedtls-sys-auto
crate specifieslinks = "mbedtls"
(https://github.com/fortanix/rust-mbedtls/blob/master/mbedtls-sys/Cargo.toml#L14). In fact it links against three C libraries:libmbedcrypto.a
,libmbedtls.a
,libmbedx509.a
.There is another publicly available Rust crate,
psa-crypto-sys
, that links againstlibmbedcrypto.a
only. That crate specifieslinks = "mbedcrypto"
(https://github.com/parallaxsecond/rust-psa-crypto/blob/main/psa-crypto-sys/Cargo.toml#L12).Perhaps it would be better for
mbedtls-sys-auto
to specifylinks = "mbedcrypto"
so that the collision withpsa-crypto-sys
is detected by Cargo.The text was updated successfully, but these errors were encountered: