11 lines
333 B
TOML
11 lines
333 B
TOML
[package]
|
|
name = "album-db"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
diesel = { version = "2.1.0", features = ["postgres", "postgres_backend"] }
|
|
diesel-async = { version = "0.3.1", features = ["deadpool", "tokio-postgres"] }
|