File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ name = "postgres-binary-copy"
33version = " 0.1.0"
44authors = [" Steven Fackler <sfackler@gmail.com>" ]
55license = " 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 ]
812byteorder = " 0.3"
Original file line number Diff line number Diff line change 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
55Support 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
Original file line number Diff line number Diff line change 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) ]
3032extern crate byteorder;
3133extern crate postgres;
3234
You can’t perform that action at this time.
0 commit comments