bazzar/crates/api/Cargo.toml

54 lines
2.4 KiB
TOML
Raw Permalink Normal View History

2022-04-14 08:07:59 +02:00
[package]
2023-06-20 07:03:15 +02:00
name = "myco"
2022-04-14 08:07:59 +02:00
version = "0.1.0"
edition = "2021"
[dependencies]
2022-12-20 15:34:20 +01:00
actix = { version = "0", features = [] }
actix-broker = { version = "0", features = [] }
actix-cors = { version = "0", features = [] }
actix-files = { version = "0", features = [] }
actix-identity = { version = "0", features = [] }
actix-multipart = { version = "0", features = [] }
actix-redis = { version = "0", features = [] }
actix-rt = { version = "2", features = [] }
actix-session = { version = "0", features = ["actix-redis", "redis-actor-session"] }
actix-web = { version = "4", features = [] }
actix-web-httpauth = { version = "0", features = [] }
actix-web-opentelemetry = { version = "0", features = [] }
async-trait = { version = "0", features = [] }
bytes = { version = "1" }
2022-11-05 19:04:38 +01:00
channels = { path = "../channels", features = ['accounts', 'carts', 'emails', 'search'] }
2022-12-20 15:34:20 +01:00
chrono = { version = "0", features = ["serde"] }
2022-12-02 16:05:55 +01:00
config = { path = "../config", features = ['full'] }
2022-11-17 16:56:08 +01:00
#database_manager = { path = "../database_manager" }
2022-12-20 15:34:20 +01:00
derive_more = { version = "0", features = [] }
dotenv = { version = "0", features = [] }
2022-11-04 18:40:14 +01:00
fs_manager = { path = "../fs_manager" }
2022-12-20 15:34:20 +01:00
futures = { version = "0", features = [] }
futures-util = { version = "0", features = [] }
gumdrop = { version = "0", features = [] }
human-panic = { version = "1" }
include_dir = { version = "0", features = [] }
itertools = { version = "0" }
jemallocator = { version = "0", features = [] }
2022-11-04 18:40:14 +01:00
model = { path = "../model", version = "0.1", features = ["db"] }
2022-12-20 15:34:20 +01:00
oauth2 = { version = "4", features = [] }
2022-11-04 18:40:14 +01:00
order_manager = { path = "../order_manager" }
2022-12-20 15:34:20 +01:00
parking_lot = { version = "0", features = [] }
2022-11-04 18:40:14 +01:00
payment_manager = { path = "../payment_manager" }
2022-12-20 15:34:20 +01:00
pretty_env_logger = { version = "0", features = [] }
2022-11-01 22:09:58 +01:00
rumqttc = { version = "*" }
2022-12-20 15:34:20 +01:00
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = [] }
sqlx = { version = "0", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"] }
sqlx-core = { version = "0", features = [] }
tarpc = { version = "0", features = ["tokio1", "serde-transport-bincode", "serde-transport", "serde", "serde-transport-json", "tcp"] }
tera = { version = "1", features = [] }
thiserror = { version = "1", features = [] }
2022-11-04 18:40:14 +01:00
token_manager = { path = "../token_manager" }
2022-12-20 15:34:20 +01:00
tokio = { version = "1", features = ["full"] }
toml = { version = "0", features = [] }
uuid = { version = "1", features = ["serde"] }
validator = { version = "0", features = [] }