chat-communicators/Cargo.toml

19 lines
685 B
TOML
Raw Permalink Normal View History

2023-01-29 03:50:25 +00:00
[package]
name = "chat-communicators"
version = "0.1.0"
edition = "2021"
[lib]
2023-01-29 03:50:25 +00:00
[dependencies]
tokio = { version = "1.20.1", features = ["full"] }
2023-03-05 18:17:08 +00:00
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking"], default-features = false }
2023-01-29 03:50:25 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1" }
2023-01-29 03:50:25 +00:00
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" }
2023-02-20 18:47:27 +00:00
dev-dtos = { git = "https://git.franklinblanco.dev/franklinblanco/user-svc-dtos-rust.git" }