Skip to content

Commit

Permalink
add initial travis build config
Browse files Browse the repository at this point in the history
  • Loading branch information
rursprung committed Oct 2, 2019
1 parent 1ea620c commit 5df623b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: rust
rust:
- stable
- 1.38.0 # lowest rust release against which we guarantee compatibility.
cache: cargo
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# r2d2-oracle
[![Build Status](https://travis-ci.com/rursprung/r2d2-oracle.svg?branch=master)](https://travis-ci.com/rursprung/r2d2-oracle)

Oracle support for the r2d2 connection pool.
This fits in between the [r2d2](https://crates.io/crates/r2d2) connection manager and [oracle](https://crates.io/crates/oracle) database driver crates.

Expand Down Expand Up @@ -30,3 +32,8 @@ fn main() {
## Current Status of the Crate & Roadmap to v1.0.0
This is the initial release of the crate and has not yet been proven in production. Nevertheless: the crate is very small so not many problems are expected.
The precondition for releasing v1.0.0 is that both `r2d2` and `oracle` have released their v1.0.0.

## Build-time Requirements
The crate is tested against stable rust and rust 1.38.0 (which was the stable version at the time the crate has been built).
It is possible that it works with older versions as well but this is not tested.
Please see the details of the r2d2 and oracle crates about their requirements.

0 comments on commit 5df623b

Please sign in to comment.