dev-communicators/Cargo.toml

17 lines
709 B
TOML
Raw Normal View History

2022-08-21 15:32:47 +00:00
[package]
name = "dev-communicators"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[dependencies]
tokio = { version = "1.20.1", features = ["full"] }
2023-03-05 18:17:23 +00:00
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking"], default-features = false }
2022-08-21 15:32:47 +00:00
serde = { version = "1.0", features = ["derive"] }
2022-09-08 15:57:32 +00:00
#openssl = { version = "0.10", features = ["vendored"] }
2023-02-21 17:23:22 +00:00
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
2023-03-05 13:14:24 +00:00
dev-dtos = { git = "https://git.franklinblanco.dev/franklinblanco/dev-dtos.git" }
2023-02-21 17:23:22 +00:00
actix-web-utils = { git = "https://git.franklinblanco.dev/franklinblanco/actix-web-utils.git" }