aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-02-06 11:28:32 -0800
committerSteven Fackler <[email protected]>2014-02-06 11:28:32 -0800
commit490e518c6d24cd5418bbe5a2b7b0dec9c0d0bef4 (patch)
tree0742cb09e4197bf6d3b55b4a69f27991e65893f1
parentUpdate for IO API update (diff)
parentextra::sync was moved to sync crate (diff)
downloadrust-openssl-490e518c6d24cd5418bbe5a2b7b0dec9c0d0bef4.tar.xz
rust-openssl-490e518c6d24cd5418bbe5a2b7b0dec9c0d0bef4.zip
Merge pull request #5 from zr40/sync-crate
extra::sync was moved to sync crate
-rw-r--r--lib.rs1
-rw-r--r--ssl/mod.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/lib.rs b/lib.rs
index 155bac68..e654b32c 100644
--- a/lib.rs
+++ b/lib.rs
@@ -4,6 +4,7 @@
#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
extern mod extra;
+extern mod sync;
pub mod ssl;
pub mod crypto;
diff --git a/ssl/mod.rs b/ssl/mod.rs
index 6381b754..d6fb8bff 100644
--- a/ssl/mod.rs
+++ b/ssl/mod.rs
@@ -1,4 +1,4 @@
-use extra::sync::one::{Once, ONCE_INIT};
+use sync::one::{Once, ONCE_INIT};
use std::cast;
use std::libc::{c_int, c_void, c_char};
use std::ptr;