Merge pull request #1 from chamakits/feature/bundle-update-bindgens

Regenerate bindgen based on bundled sqlite
This commit is contained in:
Chip Collier 2016-10-08 08:10:41 +02:00 committed by GitHub
commit 3e4f15aef7
5 changed files with 819 additions and 6049 deletions

View File

@ -11,4 +11,6 @@ script:
- cargo test --features functions
- cargo test --features chrono
- cargo test --features serde_json
- cargo test --features bundled
- cargo test --features "backup blob chrono functions load_extension serde_json trace"
- cargo test --features "backup blob chrono functions load_extension serde_json trace bundled"

View File

@ -78,6 +78,7 @@ features](http://doc.crates.io/manifest.html#the-features-section). They are:
* `serde_json` implements [`FromSql`](http://jgallagher.github.io/rusqlite/rusqlite/types/trait.FromSql.html)
and [`ToSql`](http://jgallagher.github.io/rusqlite/rusqlite/types/trait.ToSql.html) for the
`Value` type from the [`serde_json` crate](https://crates.io/crates/serde_json).
* `bundled` uses a bundled version of sqlite3. This is a good option for cases where linking to sqlite3 is complicated, like for example Windows.
## Author

View File

@ -17,6 +17,7 @@ build: false
test_script:
- cargo test --lib --verbose
- cargo test --lib --features "backup blob chrono functions load_extension serde_json trace"
- cargo test --lib --features "backup blob chrono functions load_extension serde_json trace bundled"
cache:
- C:\Users\appveyor\.cargo

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff