Release v0.7.1

This is a bugfix release containing two major fixes. Most importantly, the
`Copy` constraint has been removed from `Identifiable::Id`. This was an
oversight which ended up making it impossible to use `#[changeset_for]` with
string IDs. This fix does technically constitute a breaking change to public
API, but I'm doing this in a patch release as it affects a recently introduced
trait and I consider it more of a bugfix. We're still 0.x, so semver doesn't
strictly hold yet. Additionally, the macro form of `#[belongs_to]` supported
specifying custom foriegn keys, while the procedural form did not. This has
been remedied.
5 files changed
tree: 65df0039ee39c77845387ea7421ab8ae375b488d
  1. .cargo/
  2. bin/
  3. diesel/
  4. diesel_cli/
  5. diesel_codegen/
  6. diesel_codegen_syntex/
  7. diesel_compile_tests/
  8. diesel_tests/
  9. migrations/
  10. .example.env
  11. .gitignore
  12. .travis.yml
  13. CHANGELOG.md
  14. code_of_conduct.md
  15. LICENSE-APACHE
  16. LICENSE-MIT
  17. 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.