bazzar/crates/account_manager/Cargo.toml

36 lines
1.2 KiB
TOML
Raw Normal View History

2022-05-19 16:13:27 +02:00
[package]
name = "account_manager"
version = "0.1.0"
edition = "2021"
2022-11-01 22:09:58 +01:00
[[bin]]
name = "account-manager"
2022-11-04 18:40:14 +01:00
path = "src/main.rs"
2022-11-01 22:09:58 +01:00
2022-05-19 16:13:27 +02:00
[dependencies]
2022-11-01 22:09:58 +01:00
bincode = { version = "1.3.3" }
bytes = { version = "1.2.1" }
2022-11-04 18:40:14 +01:00
channels = { path = "../channels" }
config = { path = "../config" }
2022-11-01 22:09:58 +01:00
dotenv = { version = "0.15.0" }
2022-11-03 07:02:33 +01:00
futures = { version = "0.3.25" }
gumdrop = { version = "0.8.1" }
2022-11-03 07:02:33 +01:00
json = { version = "0.12.4" }
2022-11-11 16:32:07 +01:00
model = { path = "../model", features = ['db'] }
opentelemetry = { version = "0.17.0" }
opentelemetry-jaeger = { version = "0.17.0" }
2022-11-01 22:09:58 +01:00
rumqttc = { version = "*" }
2022-05-22 14:19:11 +02:00
serde = { version = "1.0.137", features = ["derive"] }
2022-11-04 18:40:14 +01:00
sqlx = { version = "0.6.2", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"] }
sqlx-core = { version = "0.6.2", features = [] }
2022-11-11 16:32:07 +01:00
tarpc = { version = "0.31.0", features = ["tokio1", "serde-transport-bincode", "serde-transport", "serde", "serde-transport-json", "tcp"] }
2022-10-31 09:28:49 +01:00
thiserror = { version = "1.0.31" }
2022-11-01 22:09:58 +01:00
tokio = { version = "1.21.2", features = ['full'] }
tracing = { version = "0.1.6" }
tracing-opentelemetry = { version = "0.17.4" }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
2022-11-09 16:59:12 +01:00
[dev-dependencies]
fake = { version = "2.5.0" }
testx = { path = "../testx" }