Commit 1b4a2eef authored by Steven Fackler's avatar Steven Fackler
Browse files

Switch to cargo liblibc

parent ebd90629
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -17,6 +17,9 @@ tlsv1_1 = []
sslv2 = []
aes_xts = []

[dependencies]
libc = "0.1"

[build-dependencies]
pkg-config = "0.3"
gcc = "0.3"
+1 −1
Original line number Diff line number Diff line
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(dead_code)]
#![feature(core, old_io, libc, old_path, std_misc, env)]
#![feature(core, old_io, old_path, std_misc, env)]
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl-sys")]

extern crate libc;
+3 −0
Original line number Diff line number Diff line
@@ -19,5 +19,8 @@ aes_xts = ["openssl-sys/aes_xts"]
path = "../openssl-sys"
version = "0.4.3"

[dependencies]
libc = "0.1"

[dev-dependencies]
rustc-serialize = "0.2"
+1 −1
Original line number Diff line number Diff line
#![feature(unsafe_destructor, core, old_io, std_misc, libc, old_path)]
#![feature(unsafe_destructor, core, old_io, std_misc, old_path)]
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl")]

extern crate libc;