We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc5835c commit ea6b2c4Copy full SHA for ea6b2c4
src/lib/lazy.rs
@@ -1,8 +1,8 @@
1
use std::mem;
2
-use sync::one;
+use std::sync;
3
4
pub struct Lazy<T> {
5
- pub lock: one::Once,
+ pub lock: sync::Once,
6
pub ptr: *const T,
7
}
8
@@ -17,4 +17,4 @@ impl<T> Lazy<T> {
17
18
19
20
-pub const ONCE_INIT: one::Once = one::ONCE_INIT;
+pub const ONCE_INIT: sync::Once = sync::ONCE_INIT;
src/lib/protobuf.rs
@@ -5,7 +5,6 @@
#![desc = "protobuf implementation for rust"]
#![license = "BSD"]
-extern crate sync;
9
extern crate collections;
10
11
pub use unknown::UnknownFields;
src/protoc-gen-rust.rs
@@ -3,7 +3,6 @@
#![allow(non_camel_case_types)]
extern crate protobuf;
use std::io;
use std::io::Reader;
0 commit comments