diesel/Cargo.toml
Sean Griffin f6671c51d6 Release v1.2.2
The way we had deprecated `large-tables` and friends was breaking
builds. We still need to improve how this gets deprecated in general,
but in the short term we can fix it by allowing warnings.

Fixes #1634.
2018-04-12 13:52:20 -06:00

40 lines
1.6 KiB
TOML

[workspace]
members = [
"diesel",
"diesel_cli",
"diesel_derives",
# FIXME: getting "multiple matching crates for `diesel`" because of the shared build directory
# "diesel_compile_tests",
"diesel_tests",
"diesel_infer_schema",
"diesel_infer_schema/infer_schema_internals",
"diesel_infer_schema/infer_schema_macros",
"diesel_migrations",
"diesel_migrations/migrations_internals",
"diesel_migrations/migrations_macros",
"examples/mysql/all_about_inserts",
"examples/mysql/getting_started_step_1",
"examples/mysql/getting_started_step_2",
"examples/mysql/getting_started_step_3",
"examples/postgres/advanced-blog-cli",
"examples/postgres/all_about_inserts",
"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/all_about_inserts",
"examples/sqlite/getting_started_step_1",
"examples/sqlite/getting_started_step_2",
"examples/sqlite/getting_started_step_3",
]
[replace]
"diesel:1.2.2" = { path = "diesel" }
"diesel_derives:1.2.0" = { path = "diesel_derives" }
"diesel_infer_schema:1.2.0" = { path = "diesel_infer_schema" }
"infer_schema_macros:1.2.0" = { path = "diesel_infer_schema/infer_schema_macros" }
"infer_schema_internals:1.2.0" = { path = "diesel_infer_schema/infer_schema_internals" }
"diesel_migrations:1.2.0" = { path = "diesel_migrations" }
"migrations_internals:1.2.0" = { path = "diesel_migrations/migrations_internals" }
"migrations_macros:1.2.0" = { path = "diesel_migrations/migrations_macros" }