rave/Cargo.toml

21 lines
519 B
TOML
Raw Normal View History

[workspace]
members = ["rave", "entities", "migration"]
resolver = "2"
2023-10-08 17:33:30 +00:00
[workspace.dependencies]
entities = { path = "entities" }
migration = { path = "migration" }
sea-orm = { version = "0.12", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"with-time",
"postgres-array",
2023-10-08 18:38:36 +00:00
] }
2023-10-09 13:38:30 +00:00
time = { version = "0.3.29", features = [
"serde-human-readable",
"macros",
"parsing",
] }
2023-10-08 18:38:36 +00:00
tracing = { version = "0.1.37", features = ["async-await"] }
serde = { version = "1.0.188", features = ["derive"] }