album/Cargo.toml

29 lines
671 B
TOML
Raw Permalink Normal View History

[package]
2023-07-12 00:44:22 +04:00
name = "album"
version = "0.1.0"
authors = ["Andrey Tkachenko<andrey@aidev.ru>"]
2022-02-06 23:06:44 +04:00
edition = "2021"
2023-07-12 00:44:22 +04:00
[workspace]
2023-07-12 00:44:22 +04:00
members = [
"crates/album-api",
# "crates/album-db",
# "crates/album-core"
]
[dependencies]
2023-07-12 00:44:22 +04:00
album-api = { path = "./crates/album-api" }
async-trait = "0.1.64"
async-walkdir = "0.2.0"
2023-07-12 00:44:22 +04:00
chrono = "0.4.19"
2022-10-24 20:59:07 +04:00
clap = { version = "4.0.18", features = ["derive", "wrap_help", "env"] }
2023-07-12 00:44:22 +04:00
diesel-async = { version = "0.3.1", features = ["deadpool", "postgres"] }
2019-10-29 18:26:51 +04:00
dotenv = "0.15"
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
[dependencies.diesel]
default-features = false
features = ["chrono", "postgres"]
2023-07-12 00:44:22 +04:00
version = "2.1.0"