ruabmbua / hidapi-rs

Rust bindings for the hidapi C library
MIT License
172 stars 81 forks source link

[Question] why `gcc` as dependency? #19

Closed Geobert closed 6 years ago

Geobert commented 6 years ago

Hi there,

I'm interested into this crate in order to interact with a custom HID device on Windows. I noticed the gcc dependency so my question is will this crate works with msvc target?

Osspial commented 6 years ago

gcc serves as an abstraction over all the platform-specific C compilers. So, on MSVC, it would call into the MSVC C compiler. It should work fine.