75 lines
2.5 KiB
TOML
75 lines
2.5 KiB
TOML
[package]
|
|
name = "bazzar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
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" }
|
|
fs_manager = { path = "../actors/fs_manager" }
|
|
|
|
human-panic = { version = "1.0.3" }
|
|
|
|
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 = [] }
|
|
actix-files = { version = "0.6", features = [] }
|
|
actix-multipart = { version = "0.4", features = [] }
|
|
|
|
gumdrop = { version = "0.8", features = [] }
|
|
|
|
tera = { version = "1.15", features = [] }
|
|
|
|
tracing = { version = "0.1", features = [] }
|
|
|
|
uuid = { version = "0.8", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = [] }
|
|
toml = { version = "0.5", features = [] }
|
|
|
|
sqlx = { version = "0.5", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"] }
|
|
sqlx-core = { version = "0.5", features = [] }
|
|
|
|
thiserror = { version = "1.0", features = [] }
|
|
|
|
validator = { version = "0.14", features = [] }
|
|
|
|
log = { version = "0.4", features = [] }
|
|
pretty_env_logger = { version = "0.4", features = [] }
|
|
|
|
dotenv = { version = "0.15", features = [] }
|
|
|
|
derive_more = { version = "0.99", features = [] }
|
|
parking_lot = { version = "0.12", features = [] }
|
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
|
futures = { version = "0.3", features = [] }
|
|
futures-util = { version = "0.3", features = [] }
|
|
|
|
oauth2 = { version = "4.1", features = [] }
|
|
|
|
async-trait = { version = "0.1", features = [] }
|
|
|
|
jemallocator = { version = "0.3", features = [] }
|
|
|
|
include_dir = { version = "0.7.2", features = [] }
|
|
|
|
# For rewrite into bus-based app
|
|
messagebus = { version = "0.9.13" }
|