-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 898 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
27
28
29
30
31
32
33
34
[package]
name = "tosspayments-rs"
description = "API bindings for the Tosspayments HTTP API"
version = "0.2.0"
edition = "2021"
rust-version = "1.70.0"
readme = "README.md"
authors = [
"Seokju Na <[email protected]>"
]
license = "MIT"
homepage = "https://github.com/seokju-na/tosspayments-rs"
repository = "https://github.com/seokju-na/tosspayments-rs"
documentation = "https://docs.rs/tosspayments-rs"
keywords = ["tosspayments", "api", "async"]
categories = ["api-bindings"]
[lib]
name = "tosspayments"
[dependencies]
thiserror = "^1"
reqwest = { version = "^0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = {version = ">=1.0.79", features = ["derive"] }
serde_json = "1.0"
serde_qs = "^0.13"
base64 = "^0.22"
tokio = "^1.40"
convert_case = "^0.6"
typed-builder = "^0.20"
[dev-dependencies]
httpmock = "0.7.0"
tokio = { version = "1.40", features = ["full"] }