Release postgres-protocol v0.5.0-alpha.1
This commit is contained in:
parent
7b73eee3fb
commit
9ebdca23e1
@ -1,5 +1,11 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v0.5.0-alpha.1 - 2019-10-14
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Frontend messages and types now serialize to `BytesMut` rather than `Vec<u8>`.
|
||||||
|
|
||||||
## v0.4.1 - 2019-06-29
|
## v0.4.1 - 2019-06-29
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "postgres-protocol"
|
name = "postgres-protocol"
|
||||||
version = "0.4.1"
|
version = "0.5.0-alpha.1"
|
||||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Low level Postgres protocol APIs"
|
description = "Low level Postgres protocol APIs"
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
//!
|
//!
|
||||||
//! This library assumes that the `client_encoding` backend parameter has been
|
//! This library assumes that the `client_encoding` backend parameter has been
|
||||||
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
|
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
|
||||||
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.4")]
|
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.5")]
|
||||||
#![warn(missing_docs, rust_2018_idioms, clippy::all)]
|
#![warn(missing_docs, rust_2018_idioms, clippy::all)]
|
||||||
|
|
||||||
use byteorder::{BigEndian, ByteOrder};
|
use byteorder::{BigEndian, ByteOrder};
|
||||||
|
@ -16,7 +16,7 @@ with-serde_json-1 = ["serde-1", "serde_json-1"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "0.4"
|
bytes = "0.4"
|
||||||
fallible-iterator = "0.2"
|
fallible-iterator = "0.2"
|
||||||
postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" }
|
postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" }
|
||||||
postgres-derive = { version = "0.3.3", optional = true, path = "../postgres-derive" }
|
postgres-derive = { version = "0.3.3", optional = true, path = "../postgres-derive" }
|
||||||
|
|
||||||
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }
|
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }
|
||||||
|
@ -40,7 +40,7 @@ percent-encoding = "1.0"
|
|||||||
pin-utils = "=0.1.0-alpha.4"
|
pin-utils = "=0.1.0-alpha.4"
|
||||||
pin-project = "0.4"
|
pin-project = "0.4"
|
||||||
phf = "0.7.23"
|
phf = "0.7.23"
|
||||||
postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" }
|
postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" }
|
||||||
postgres-types = { version = "0.1.0", path = "../postgres-types" }
|
postgres-types = { version = "0.1.0", path = "../postgres-types" }
|
||||||
tokio = { version = "=0.2.0-alpha.6", default-features = false, features = ["io", "codec"] }
|
tokio = { version = "=0.2.0-alpha.6", default-features = false, features = ["io", "codec"] }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user