forked from diesel-rs/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (24 loc) · 883 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[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.16.0" = { path = "diesel" }
"diesel_codegen:0.16.0" = { path = "diesel_codegen" }
"diesel_infer_schema:0.16.0" = { path = "diesel_infer_schema" }