Skip to content

Commit ea6b2c4

Browse files
committed
[fix] std::sync
1 parent fc5835c commit ea6b2c4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/lib/lazy.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use std::mem;
2-
use sync::one;
2+
use std::sync;
33

44
pub struct Lazy<T> {
5-
pub lock: one::Once,
5+
pub lock: sync::Once,
66
pub ptr: *const T,
77
}
88

@@ -17,4 +17,4 @@ impl<T> Lazy<T> {
1717
}
1818
}
1919

20-
pub const ONCE_INIT: one::Once = one::ONCE_INIT;
20+
pub const ONCE_INIT: sync::Once = sync::ONCE_INIT;

src/lib/protobuf.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![desc = "protobuf implementation for rust"]
66
#![license = "BSD"]
77

8-
extern crate sync;
98
extern crate collections;
109

1110
pub use unknown::UnknownFields;

src/protoc-gen-rust.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![allow(non_camel_case_types)]
44

55
extern crate protobuf;
6-
extern crate sync;
76

87
use std::io;
98
use std::io::Reader;

0 commit comments

Comments
 (0)