bazzar/db-seed/Cargo.toml

33 lines
920 B
TOML
Raw Normal View History

2022-05-06 16:02:38 +02:00
[package]
name = "db-seed"
version = "0.1.0"
edition = "2021"
[dependencies]
model = { path = "../shared/model", version = "0.1", features = ["db", "dummy"] }
config = { path = "../shared/config" }
database_manager = { path = "../actors/database_manager", features = ["dummy"] }
2022-05-08 09:47:05 +02:00
fs_manager = { path = "../actors/fs_manager", features = [] }
2022-05-06 16:02:38 +02:00
bytes = { version = "1.1.0" }
2022-05-06 16:02:38 +02:00
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
actix-web = { version = "4.0", features = [] }
2022-05-08 09:47:05 +02:00
tokio = { version = "1.18.1", features = ["full"] }
2022-05-06 16:02:38 +02:00
fake = { version = "2.4.3", features = ["derive", "chrono", "http"] }
rand = { version = "0.8.5" }
dotenv = { version = "0.15", features = [] }
tracing = { version = "0.1.34" }
tracing-subscriber = { version = "0.3.11" }
2022-05-08 09:47:05 +02:00
password-hash = { version = "0.4", features = ["alloc"] }
thiserror = { version = "1.0.31" }
human-panic = { version = "1.0.3" }