bazzar/crates/db-seed/Cargo.toml

23 lines
780 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]
2022-11-04 18:40:14 +01:00
bytes = { version = "1.1.0" }
config = { path = "../config" }
dotenv = { version = "0.15", features = [] }
2022-11-17 16:56:08 +01:00
fakeit = { version = "1.1.1", features = [] }
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" }
2022-11-17 16:56:08 +01:00
account-manager = { path = '../account_manager' }
stock-manager = { path = "../stock_manager" }
channels = { path = '../channels' }