chat-communicators/Cargo.toml

18 lines
633 B
TOML

[package]
name = "chat-communicators"
version = "0.1.0"
edition = "2021"
[lib]
[dependencies]
tokio = { version = "1.20.1", features = ["full"] }
reqwest = { version = "0.11.11", features = [ "json", "blocking" ]}
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1" }
chat-types = { git = "https://git.franklinblanco.dev/franklinblanco/chat-types.git" }
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
actix-web-utils = { git = "https://git.franklinblanco.dev/franklinblanco/actix-web-utils.git" }
dev-dtos = { git = "https://github.com/franklinblanco/user-svc-dtos-rust.git" }