bazzar/api/Cargo.toml

77 lines
2.6 KiB
TOML
Raw Normal View History

2022-04-14 08:07:59 +02:00
[package]
name = "bazzar"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-05-06 11:47:18 +02:00
model = { path = "../shared/model", version = "0.1", features = ["db"] }
config = { path = "../shared/config" }
database_manager = { path = "../actors/database_manager" }
cart_manager = { path = "../actors/cart_manager" }
email_manager = { path = "../actors/email_manager" }
order_manager = { path = "../actors/order_manager" }
payment_manager = { path = "../actors/payment_manager" }
search_manager = { path = "../actors/search_manager" }
token_manager = { path = "../actors/token_manager" }
2022-05-06 16:02:38 +02:00
fs_manager = { path = "../actors/fs_manager" }
2022-05-06 11:47:18 +02:00
2022-05-08 09:47:05 +02:00
human-panic = { version = "1.0.3" }
bytes = { version = "1.1.0" }
2022-04-30 06:58:27 +02:00
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
actix-web = { version = "4.0", features = [] }
actix-web-httpauth = { version = "0.6", features = [] }
actix-cors = { version = "0.6", features = [] }
actix-broker = { version = "0.4", features = [] }
actix-identity = { version = "0.4", features = [] }
actix-web-opentelemetry = { version = "0.12", features = [] }
actix-session = { version = "0.6", features = ["actix-redis", "redis-actor-session"] }
actix-redis = { version = "0.11", features = [] }
2022-05-09 16:17:27 +02:00
actix-files = { version = "0.6", features = [] }
2022-05-06 07:51:12 +02:00
actix-multipart = { version = "0.4", features = [] }
2022-04-14 21:40:26 +02:00
2022-04-30 06:58:27 +02:00
gumdrop = { version = "0.8", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
tera = { version = "1.15", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
tracing = { version = "0.1", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
uuid = { version = "0.8", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = [] }
toml = { version = "0.5", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
sqlx = { version = "0.5", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"] }
sqlx-core = { version = "0.5", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
thiserror = { version = "1.0", features = [] }
2022-04-14 21:40:26 +02:00
2022-04-30 06:58:27 +02:00
validator = { version = "0.14", features = [] }
2022-04-14 21:40:26 +02:00
2022-04-30 06:58:27 +02:00
log = { version = "0.4", features = [] }
pretty_env_logger = { version = "0.4", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
dotenv = { version = "0.15", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
derive_more = { version = "0.99", features = [] }
parking_lot = { version = "0.12", features = [] }
2022-04-14 08:07:59 +02:00
2022-04-30 06:58:27 +02:00
tokio = { version = "1.17", features = ["full"] }
futures = { version = "0.3", features = [] }
futures-util = { version = "0.3", features = [] }
2022-04-18 22:07:52 +02:00
2022-04-30 06:58:27 +02:00
oauth2 = { version = "4.1", features = [] }
2022-04-19 16:49:30 +02:00
2022-04-30 06:58:27 +02:00
async-trait = { version = "0.1", features = [] }
2022-04-20 14:30:59 +02:00
2022-04-30 06:58:27 +02:00
jemallocator = { version = "0.3", features = [] }
2022-04-20 16:25:52 +02:00
2022-05-11 15:56:41 +02:00
include_dir = { version = "0.7.2", features = [] }
2022-05-01 17:20:31 +02:00
# For rewrite into bus-based app
messagebus = { version = "0.9.13" }