diff options
| author | Matthijs van der Vleuten <[email protected]> | 2014-02-06 19:57:21 +0100 |
|---|---|---|
| committer | Matthijs van der Vleuten <[email protected]> | 2014-02-06 19:57:21 +0100 |
| commit | e7f2dccb2f0ae8cea28d702807bf15069020b9f5 (patch) | |
| tree | 0742cb09e4197bf6d3b55b4a69f27991e65893f1 | |
| parent | Update for IO API update (diff) | |
| download | rust-openssl-e7f2dccb2f0ae8cea28d702807bf15069020b9f5.tar.xz rust-openssl-e7f2dccb2f0ae8cea28d702807bf15069020b9f5.zip | |
extra::sync was moved to sync crate
| -rw-r--r-- | lib.rs | 1 | ||||
| -rw-r--r-- | ssl/mod.rs | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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; @@ -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; |