Skip to content
New issue

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

MSRV issue with c_char #2317

Closed
jmayclin opened this issue Oct 16, 2024 · 2 comments
Closed

MSRV issue with c_char #2317

jmayclin opened this issue Oct 16, 2024 · 2 comments

Comments

@jmayclin
Copy link
Contributor

I think the latest release 0.10.67 actually requires an MSRV of 1.64 to compile, but is published as 1.63.

We saw the following error in our CI (testing a 1.63 MSRV)

 error[E0432]: unresolved import `std::ffi::c_char`
  --> /Users/runner/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/openssl-0.10.67/src/kdf.rs:28:24
   |
28 |         use std::ffi::{c_char, c_void};
   |                        ^^^^^^ no `c_char` in `ffi`

ci link

From the documentation, it looks like c_char wasn't added until 1.64.

@Tarnum-tst
Copy link

Tarnum-tst commented Oct 16, 2024

Having same issue here while building cryptography. i686-pc-windows-gnu with MSRV 1.63

error[E0432]: unresolved import `std::ffi::c_char`
  --> C:\Users\User\.cargo\registry\src\gh.neting.cc-1285ae84e5963aae\openssl-0.10.67\src\kdf.rs:28:24
   |
28 |         use std::ffi::{c_char, c_void};
   |                        ^^^^^^ no `c_char` in `ffi`

Solved this by replacing (line 28, kdf.rs)

        use std::ffi::{c_char, c_void};

with

        use libc::{c_char, c_void};

@alex
Copy link
Collaborator

alex commented Oct 16, 2024 via email

@alex alex closed this as completed in 065cc77 Oct 16, 2024
alex added a commit that referenced this issue Oct 16, 2024
fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.68
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants