extra::sync was moved to sync crate
This commit is contained in:
parent
1a5e625b4f
commit
e7f2dccb2f
1
lib.rs
1
lib.rs
|
|
@ -4,6 +4,7 @@
|
||||||
#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
|
#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
|
||||||
|
|
||||||
extern mod extra;
|
extern mod extra;
|
||||||
|
extern mod sync;
|
||||||
|
|
||||||
pub mod ssl;
|
pub mod ssl;
|
||||||
pub mod crypto;
|
pub mod crypto;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use extra::sync::one::{Once, ONCE_INIT};
|
use sync::one::{Once, ONCE_INIT};
|
||||||
use std::cast;
|
use std::cast;
|
||||||
use std::libc::{c_int, c_void, c_char};
|
use std::libc::{c_int, c_void, c_char};
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue