Skip to content

Commit a1fc594

Browse files
committed
Merge branch 'release'
2 parents c6d0cba + 5e15832 commit a1fc594

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ authors = ["Steven Fackler <sfackler@gmail.com>"]
55
description = "Low level Postgres protocol APIs"
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/sfackler/rust-postgres-protocol"
8+
documentation = "https://sfackler.github.io/rust-postgres-protocol/doc/v0.1.0/postgres_protocol"
89
readme = "README.md"
910

1011
[dependencies]

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# postgres-protocol
22

3+
[Documentation](https://sfackler.github.io/rust-postgres-protocol/doc/v0.1.0/postgres_protocol)
4+
5+
[![Build Status](https://travis-ci.org/sfackler/rust-postgres-protocol.png?branch=master)](https://travis-ci.org/sfackler/rust-postgres-protocol) [![Latest Version](https://img.shields.io/crates/v/postgres-protocol.svg)](https://crates.io/crates/postgres-protocol)
6+
37
Low level Postgres protocol APIs.
48

59
## License

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
//!
1010
//! This library assumes that the `client_encoding` backend parameter has been
1111
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
12+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-protocol/doc/v0.1.0")]
1213
#![warn(missing_docs)]
1314
extern crate byteorder;
1415
extern crate fallible_iterator;

0 commit comments

Comments
 (0)