diesel/Cargo.toml
Sean Griffin 2644b70cbc Release v0.15.0
This is a minor release containing a few quality of life features. We
were originally planning to ship these with 1.0, but they're
specifically needed by some production users.

The biggest feature here is the ability to manually specify the `ON`
clause of a join, which is separate from the associations API. You can
also use this to join to tables which otherwise have no association
between them (but this will also require you to invoke
`enable_multi_table_joins!`).

In addition to the Diesel core team, 6 people contributed to this
release. A huge thank you to:

- Alex Kitchens
- Maciej Dziardziel
- Pyry Kontio
- Sunrin SHIMURA (keen)
- king6cong
- wangcong
2017-07-23 05:31:19 -04:00

26 lines
883 B
TOML

[workspace]
members = [
"diesel",
"diesel_cli",
"diesel_codegen",
# FIXME: getting "multiple matching crates for `diesel`" because of the shared build directory
# "diesel_compile_tests",
"diesel_tests",
"diesel_infer_schema",
"examples/mysql/getting_started_step_1",
"examples/mysql/getting_started_step_2",
"examples/mysql/getting_started_step_3",
"examples/postgres/all_about_updates",
"examples/postgres/getting_started_step_1",
"examples/postgres/getting_started_step_2",
"examples/postgres/getting_started_step_3",
"examples/sqlite/getting_started_step_1",
"examples/sqlite/getting_started_step_2",
"examples/sqlite/getting_started_step_3",
]
[replace]
"diesel:0.15.0" = { path = "diesel" }
"diesel_codegen:0.15.0" = { path = "diesel_codegen" }
"diesel_infer_schema:0.15.0" = { path = "diesel_infer_schema" }