-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 818 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "azure-communications"
version = "0.1.1"
edition = "2021"
description = "API Wrapper for the Azure Communication Services in Rust."
repository = "https://github.com/AlexanderProd/azure-communications-rust"
homepage = "https://github.com/AlexanderProd/azure-communications-rust"
license = "MIT"
readme = "README.md"
authors = ["Alexander Hörl <[email protected]>"]
keywords = ["azure", "communications", "sms", "chat", "email"]
categories = ["api-bindings", "email"]
[dependencies]
anyhow = "1.0.86"
base64 = "0.22.1"
lazy_static = "1.5.0"
regex = "1.10.6"
reqwest = "0.12.7"
ring = "0.17.8"
serde = {version = "1.0.208", features = ["derive"]}
serde_json = "1.0.125"
time = {version = "0.3.36", features = ["formatting"]}
[dev-dependencies]
tokio = { version = "1.39.3", features = ["full"] }