Release v0.6.0

In addition to a myriad of bug fixes, there are two headline features
for this release. We now provide an API for dealing with boxed queries.
Through our usage of Diesel for web apps, we found that this was a
feature we needed for things like complex search forms where you may
want to conditionally modify a query. For details, check out
http://docs.diesel.rs/diesel/prelude/trait.BoxedDsl.html

Additionally, this release fleshes out our support for SQLite by
allowing the `infer_schema!` macro to be used with it. Thanks to
@weiznich for working on this.

There were many other changes that weren't mentioned here. For the full
changelog, please see
https://github.com/sgrif/diesel/blob/master/CHANGELOG.md#050-2016-04-12
5 files changed
tree: c0e66718ad38607d757cbf76bd584a2832687f6b
  1. .cargo/
  2. bin/
  3. diesel/
  4. diesel_cli/
  5. diesel_codegen/
  6. diesel_compile_tests/
  7. diesel_tests/
  8. migrations/
  9. .example.env
  10. .gitignore
  11. .travis.yml
  12. CHANGELOG.md
  13. code_of_conduct.md
  14. LICENSE-APACHE
  15. LICENSE-MIT
  16. README.md
README.md

A safe, extensible ORM and Query Builder for Rust

Build Status Gitter

Documentation

Homepage

Diesel gets rid of the boilerplate for database interaction and eliminates runtime errors, without sacrificing performance. It takes full advantage of Rust's type system to create a low overhead query builder that “feels like Rust”.

Getting Started

You can find an extensive Getting Started tutorial at http://diesel.rs/guides/getting-started. Guides on more specific features will be coming soon.

Code of conduct

Anyone who interacts with Diesel in any space including but not limited to this GitHub repository is expected to follow our code of conduct

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.