2015-11-20 01:43:04 +03:00
|
|
|
[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"
|
2015-11-20 01:43:04 +03:00
|
|
|
|
2023-07-12 00:44:22 +04:00
|
|
|
[workspace]
|
2016-04-22 23:42:10 +03:00
|
|
|
|
2023-07-12 00:44:22 +04:00
|
|
|
members = [
|
|
|
|
"crates/album-api",
|
|
|
|
# "crates/album-db",
|
|
|
|
# "crates/album-core"
|
|
|
|
]
|
2016-04-22 23:42:10 +03:00
|
|
|
|
2015-11-20 01:43:04 +03:00
|
|
|
[dependencies]
|
2023-07-12 00:44:22 +04:00
|
|
|
album-api = { path = "./crates/album-api" }
|
|
|
|
|
2023-02-11 20:14:10 +04:00
|
|
|
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"
|
2021-01-20 02:54:51 +04:00
|
|
|
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
|
2019-12-28 02:06:07 +04:00
|
|
|
|
2019-11-02 18:59:39 +04:00
|
|
|
[dependencies.diesel]
|
|
|
|
default-features = false
|
2023-02-11 20:14:10 +04:00
|
|
|
features = ["chrono", "postgres"]
|
2023-07-12 00:44:22 +04:00
|
|
|
version = "2.1.0"
|