rave/Cargo.toml
Lyssieth 7b78375402
feat: improvements and bug fixes (sarcasm)
- `rest/getArtists` and `rest/getArtist`
- Improved artist formatting algorithm
- Other dispersed improvements
2023-10-18 23:05:09 +03:00

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"] }