File tree Expand file tree Collapse file tree 5 files changed +6
-27
lines changed
Expand file tree Collapse file tree 5 files changed +6
-27
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,10 @@ language: rust
22rust :
33- nightly
44- beta
5+ - stable
56addons :
67 postgresql : 9.4
78script :
89- cargo test
910- sudo service postgresql stop && sudo service postgresql start 9.1
1011- cargo test
11- - cargo doc --no-deps
12- after_success :
13- - test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_RUST_VERSION == "nightly" && ./.travis/update_docs.sh
14- env :
15- global :
16- secure : NwuXXkfdUD7PEIL9gyvyob/yaGry14QMhiYOrEWPMDuDBrJsjwYJJFgYsyX3HJ+TNpLt/kdjpYU4Gr2fn4F0OUDM1fHzJtsc1wXgxTaLvIK7Jdu1nNFMtII7KZgRHvD7RQs/PM4xAPLHJYbdW5wdUyVE1YQ2DktIfI7rs9haWqU=
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[package ]
22name = " postgres_large_object"
3- version = " 0.3.2 "
3+ version = " 0.3.3 "
44authors = [" Steven Fackler <sfackler@gmail.com>" ]
55license = " MIT"
66description = " Large object support for rust-postgres"
77repository = " https://github.com/sfackler/rust-postgres-large-object"
8- documentation = " https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.2 /postgres_large_object"
8+ documentation = " https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.3 /postgres_large_object"
99readme = " README.md"
1010keywords = [" database" , " sql" , " postgres" ]
1111
1212[dependencies ]
13- postgres = " 0.9"
13+ postgres = " >= 0.9, < 0.11 "
1414debug-builders = " 0.1"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ A crate providing access to the Postgres large object API.
44
55[ ![ Build Status] ( https://travis-ci.org/sfackler/rust-postgres-large-object.svg?branch=master )] ( https://travis-ci.org/sfackler/rust-postgres-large-object )
66
7- [ Documentation] ( https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.2 /postgres_large_object ) .
7+ [ Documentation] ( https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.3 /postgres_large_object )
88
99# Example
1010
Original file line number Diff line number Diff line change 3030//! io::copy(&mut large_object, &mut file).unwrap();
3131//! }
3232//! ```
33- #![ doc( html_root_url="https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.2 " ) ]
33+ #![ doc( html_root_url="https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.3 " ) ]
3434
3535extern crate postgres;
3636extern crate debug_builders;
You can’t perform that action at this time.
0 commit comments