Skip to content

Commit 6e4d960

Browse files
committed
Upgrade eui48 version
1 parent 1373a57 commit 6e4d960

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

postgres-shared/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ postgres-protocol = { version = "0.3", path = "../postgres-protocol" }
2424

2525
bit-vec = { version = "0.4", optional = true }
2626
chrono = { version = "0.4", optional = true }
27-
eui48 = { version = "0.1", optional = true }
27+
eui48 = { version = "0.3", optional = true }
2828
geo = { version = "0.4", optional = true }
2929
rustc-serialize = { version = "0.3", optional = true }
3030
serde_json = { version = "1.0", optional = true }

postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ url = "1.0"
7575

7676
bit-vec = "0.4"
7777
chrono = "0.4"
78-
eui48 = "0.1"
78+
eui48 = "0.3"
7979
geo = "0.4"
8080
rustc-serialize = "0.3"
8181
serde_json = ">=0.9,<2.0"

postgres/src/rows.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use fallible_iterator::FallibleIterator;
44
use postgres_protocol::message::frontend;
55
use postgres_shared::rows::RowData;
6-
use std::ascii::AsciiExt;
76
use std::collections::VecDeque;
87
use std::fmt;
98
use std::io;

postgres/tests/test.rs

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ use postgres::error::{DbError, SYNTAX_ERROR, QUERY_CANCELED, UNDEFINED_TABLE,
1717
INVALID_CATALOG_NAME, INVALID_PASSWORD, CARDINALITY_VIOLATION};
1818
use postgres::types::{Oid, Type, Kind, WrongType, INT4, VARCHAR, FLOAT8};
1919
use postgres::error::ErrorPosition::Normal;
20-
use postgres::rows::RowIndex;
2120
use postgres::notification::Notification;
2221
use postgres::params::IntoConnectParams;
2322
use std::thread;

0 commit comments

Comments
 (0)