-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 837 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 837 Bytes
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 = "solapi"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/solapi/solapi-rust"
description = "Official SOLAPI Rust SDK for messaging and storage APIs. Provides a typed async client to send SMS/LMS/MMS, KakaoTalk (AlimTalk/FriendTalk), schedule messages, and manage file storage."
keywords = ["solapi", "sms", "kakaotalk", "alimtalk", "sdk"]
categories = ["api-bindings", "web-programming::http-client", "asynchronous", "network-programming"]
[dependencies]
hmac = "0.12"
sha2 = "0.10"
chrono = "0.4"
rand = "0.8"
hex = "0.4"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
encoding_rs = "0.8"
[dev-dependencies]
wiremock = "0.6"
base64 = "0.21"