- `rest/getArtists` and `rest/getArtist` - Improved artist formatting algorithm - Other dispersed improvements
20 lines
535 B
TOML
20 lines
535 B
TOML
[workspace]
|
|
members = ["rave", "entities", "migration"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
entities = { path = "entities" }
|
|
migration = { path = "migration" }
|
|
sea-orm = { version = "0.12", default-features = false, features = [
|
|
"sqlx-postgres",
|
|
"runtime-tokio-rustls",
|
|
"with-time",
|
|
"postgres-array",
|
|
] }
|
|
time = { version = "0.3", features = [
|
|
"serde-human-readable",
|
|
"macros",
|
|
"parsing",
|
|
] }
|
|
tracing = { version = "0.1", features = ["async-await"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|