This repository was archived by the owner on Feb 26, 2020. It is now read-only.
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ documentation = "https://beta.docs.rs/hidapi"
17
17
libc = " 0.2.15"
18
18
19
19
[build-dependencies ]
20
- gcc = " 0.3 "
20
+ cc = " 1.0 "
Original file line number Diff line number Diff line change 17
17
// along with hidapi_rust. If not, see <http://www.gnu.org/licenses/>.
18
18
// *************************************************************************
19
19
20
- extern crate gcc ;
20
+ extern crate cc ;
21
21
22
22
fn main ( ) {
23
23
compile ( ) ;
24
24
}
25
25
26
26
#[ cfg( target_os = "linux" ) ]
27
27
fn compile ( ) {
28
- let mut config = gcc :: Config :: new ( ) ;
28
+ let mut config = cc :: Build :: new ( ) ;
29
29
config. file ( "etc/hidapi/linux/hid.c" ) . include ( "etc/hidapi/hidapi" ) ;
30
30
config. compile ( "libhidapi.a" ) ;
31
31
println ! ( "cargo:rustc-link-lib=udev" ) ;
32
32
}
33
33
34
34
#[ cfg( target_os = "windows" ) ]
35
35
fn compile ( ) {
36
- gcc :: Config :: new ( )
36
+ cc :: Build :: new ( )
37
37
. file ( "etc/hidapi/windows/hid.c" )
38
38
. include ( "etc/hidapi/hidapi" )
39
39
. compile ( "libhidapi.a" ) ;
@@ -42,7 +42,7 @@ fn compile() {
42
42
43
43
#[ cfg( target_os = "macos" ) ]
44
44
fn compile ( ) {
45
- gcc :: Config :: new ( )
45
+ cc :: Build :: new ( )
46
46
. file ( "etc/hidapi/mac/hid.c" )
47
47
. include ( "etc/hidapi/hidapi" )
48
48
. compile ( "libhidapi.a" ) ;
You can’t perform that action at this time.
0 commit comments