Skip to content

Commit e97da69

Browse files
committed
Release v0.1.0
1 parent 85f4d1b commit e97da69

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name = "postgres-binary-copy"
33
version = "0.1.0"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
license = "MIT"
6+
description = "Support for binary-format COPY query execution with postgres"
7+
documentation = "https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.1.0/postgres_binary_copy"
8+
readme = "README.md"
9+
keywords = ["database", "sql", "postgres", "copy"]
610

711
[dependencies]
812
byteorder = "0.3"

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# postgres-binary-copy
22

3-
[![Build Status](https://travis-ci.org/sfackler/rust-postgres-binary-copy.svg?branch=master)](https://travis-ci.org/sfackler/rust-postgres-binary-copy)
3+
[![Build Status](https://travis-ci.org/sfackler/rust-postgres-binary-copy.svg?branch=master)](https://travis-ci.org/sfackler/rust-postgres-binary-copy) [![Latest Version](https://img.shields.io/crates/v/postgres-binary-copy.svg)](https://crates.io/crates/postgres-binary-copy)
44

55
Support for binary-format `COPY` query execution with
66
[rust-postgres](https://github.com/sfackler/rust-postgres).
77

8+
[Documentation](https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.1.0/postgres_binary_copy)
9+
810
## Example
911

1012
```rust

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
//! stmt.copy_in(&[], &mut reader).unwrap();
2828
//! }
2929
//! ```
30+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.1.0")]
31+
#![warn(missing_docs)]
3032
extern crate byteorder;
3133
extern crate postgres;
3234

0 commit comments

Comments
 (0)