2023-10-09 18:49:57 +00:00
|
|
|
[workspace]
|
2023-10-09 19:24:32 +00:00
|
|
|
members = ["rave", "entities", "migration"]
|
2023-10-09 18:49:57 +00:00
|
|
|
resolver = "2"
|
2023-10-08 17:33:30 +00:00
|
|
|
|
2023-10-09 18:49:57 +00:00
|
|
|
[workspace.dependencies]
|
|
|
|
|
entities = { path = "entities" }
|
|
|
|
|
migration = { path = "migration" }
|
2023-10-10 18:25:02 +00:00
|
|
|
sea-orm = { version = "0.12", default-features = false, features = [
|
2023-10-09 18:49:57 +00:00
|
|
|
"sqlx-postgres",
|
|
|
|
|
"runtime-tokio-rustls",
|
|
|
|
|
"with-time",
|
|
|
|
|
"postgres-array",
|
2023-10-08 18:38:36 +00:00
|
|
|
] }
|
2023-10-18 20:05:09 +00:00
|
|
|
time = { version = "0.3", features = [
|
2023-10-09 13:38:30 +00:00
|
|
|
"serde-human-readable",
|
|
|
|
|
"macros",
|
|
|
|
|
"parsing",
|
|
|
|
|
] }
|
2023-10-18 20:05:09 +00:00
|
|
|
tracing = { version = "0.1", features = ["async-await"] }
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|