bazzar/crates/stock_manager/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "stock_manager"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "stock-manager"
path = "./src/main.rs"
[dependencies]
channels = { path = "../channels" }
2022-12-20 15:34:20 +01:00
chrono = { version = "0", features = ["serde"] }
config = { path = "../config" }
2022-11-09 16:59:12 +01:00
db-utils = { path = "../db-utils" }
2022-12-20 15:34:20 +01:00
derive_more = { version = "0", features = [] }
dotenv = { version = "0" }
futures = { version = "0" }
2022-11-11 16:32:07 +01:00
model = { path = "../model", features = ["db"] }
rumqttc = { version = "*" }
2022-12-20 15:34:20 +01:00
serde = { version = "1", features = ["derive"] }
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"] }
thiserror = { version = "1" }
tokio = { version = "1", features = ['full'] }
tracing = { version = "0" }
uuid = { version = "1", features = ['v4'] }
2022-11-09 16:59:12 +01:00
[dev-dependencies]
2022-12-20 15:34:20 +01:00
fakeit = { version = "1" }
insta = { version = "1" }
2022-11-29 15:18:31 +01:00
testx = { path = "../testx" }