Upgrade eui48 version
This commit is contained in:
parent
1373a57cf8
commit
6e4d960f8e
@ -24,7 +24,7 @@ postgres-protocol = { version = "0.3", path = "../postgres-protocol" }
|
|||||||
|
|
||||||
bit-vec = { version = "0.4", optional = true }
|
bit-vec = { version = "0.4", optional = true }
|
||||||
chrono = { version = "0.4", optional = true }
|
chrono = { version = "0.4", optional = true }
|
||||||
eui48 = { version = "0.1", optional = true }
|
eui48 = { version = "0.3", optional = true }
|
||||||
geo = { version = "0.4", optional = true }
|
geo = { version = "0.4", optional = true }
|
||||||
rustc-serialize = { version = "0.3", optional = true }
|
rustc-serialize = { version = "0.3", optional = true }
|
||||||
serde_json = { version = "1.0", optional = true }
|
serde_json = { version = "1.0", optional = true }
|
||||||
|
@ -75,7 +75,7 @@ url = "1.0"
|
|||||||
|
|
||||||
bit-vec = "0.4"
|
bit-vec = "0.4"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
eui48 = "0.1"
|
eui48 = "0.3"
|
||||||
geo = "0.4"
|
geo = "0.4"
|
||||||
rustc-serialize = "0.3"
|
rustc-serialize = "0.3"
|
||||||
serde_json = ">=0.9,<2.0"
|
serde_json = ">=0.9,<2.0"
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
use fallible_iterator::FallibleIterator;
|
use fallible_iterator::FallibleIterator;
|
||||||
use postgres_protocol::message::frontend;
|
use postgres_protocol::message::frontend;
|
||||||
use postgres_shared::rows::RowData;
|
use postgres_shared::rows::RowData;
|
||||||
use std::ascii::AsciiExt;
|
|
||||||
use std::collections::VecDeque;
|
use std::collections::VecDeque;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::io;
|
use std::io;
|
||||||
|
@ -17,7 +17,6 @@ use postgres::error::{DbError, SYNTAX_ERROR, QUERY_CANCELED, UNDEFINED_TABLE,
|
|||||||
INVALID_CATALOG_NAME, INVALID_PASSWORD, CARDINALITY_VIOLATION};
|
INVALID_CATALOG_NAME, INVALID_PASSWORD, CARDINALITY_VIOLATION};
|
||||||
use postgres::types::{Oid, Type, Kind, WrongType, INT4, VARCHAR, FLOAT8};
|
use postgres::types::{Oid, Type, Kind, WrongType, INT4, VARCHAR, FLOAT8};
|
||||||
use postgres::error::ErrorPosition::Normal;
|
use postgres::error::ErrorPosition::Normal;
|
||||||
use postgres::rows::RowIndex;
|
|
||||||
use postgres::notification::Notification;
|
use postgres::notification::Notification;
|
||||||
use postgres::params::IntoConnectParams;
|
use postgres::params::IntoConnectParams;
|
||||||
use std::thread;
|
use std::thread;
|
||||||
|
Loading…
Reference in New Issue
Block a user