bazzar/crates/db-seed/Cargo.toml

24 lines
883 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]
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
actix-web = { version = "4.0", features = [] }
2022-11-04 18:40:14 +01:00
bytes = { version = "1.1.0" }
config = { path = "../config" }
database_manager = { path = "../database_manager", features = ["dummy"] }
dotenv = { version = "0.15", features = [] }
2022-05-06 16:02:38 +02:00
fake = { version = "2.4.3", features = ["derive", "chrono", "http"] }
2022-11-04 18:40:14 +01:00
fs_manager = { path = "../fs_manager", features = [] }
human-panic = { version = "1.0.3" }
model = { path = "../model", version = "0.1", features = ["db", "dummy"] }
password-hash = { version = "0.4", features = ["alloc"] }
2022-05-06 16:02:38 +02:00
rand = { version = "0.8.5" }
2022-11-04 18:40:14 +01:00
thiserror = { version = "1.0.31" }
tokio = { version = "1.18.1", features = ["full"] }
tracing = { version = "0.1.34" }
tracing-subscriber = { version = "0.3.11" }