Skip to content

Commit 8e34fe3

Browse files
committed
Update for upstream changes
1 parent ed81cea commit 8e34fe3

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ fn main() {
6767
extern crate collections;
6868
extern crate openssl;
6969
extern crate serialize;
70-
extern crate sync;
7170
extern crate time;
7271
extern crate phf;
7372
#[phase(plugin)]

src/pool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! A simple connection pool
22
3-
use sync::{Arc, Mutex};
3+
use std::sync::{Arc, Mutex};
44

55
use {PostgresNotifications,
66
PostgresConnectParams,

src/test.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use serialize::json;
2-
use sync;
3-
use sync::Future;
2+
use std::comm;
3+
use std::sync::Future;
44
use time;
55
use time::Timespec;
66
use uuid::Uuid;
@@ -54,7 +54,7 @@ fn test_pool() {
5454
let pool = or_fail!(PostgresConnectionPool::new("postgres://postgres@localhost",
5555
NoSsl, 2));
5656

57-
let (stream1, stream2) = sync::duplex();
57+
let (stream1, stream2) = comm::duplex();
5858

5959
let pool1 = pool.clone();
6060
let mut fut1 = Future::spawn(proc() {

submodules/rust-openssl

Submodule rust-openssl updated from d997210 to d766671

0 commit comments

Comments
 (0)