-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
36 lines (32 loc) · 1014 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
35
36
[package]
name = "paypal-rs"
version = "0.2.6"
authors = ["Edgar <[email protected]>"]
description = "A library that wraps the paypal api asynchronously."
repository = "https://github.com/edg-l/paypal-rs/"
license = "MIT OR Apache-2.0"
keywords = ["paypal", "paypal-api"]
categories = ["api-bindings", "web-programming::http-client"]
documentation = "https://docs.rs/paypal-rs"
readme = "README.md"
edition = "2021"
[dependencies]
reqwest = { version = "0.12.4", default-features = false, features = ["json"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde_with = "3.8.1"
chrono = { version = "0.4.24", features = ["serde"] }
jsonwebtoken = "9.3.0"
base64 = "0.22.1"
log = "0.4.21"
bytes = "1.6.0"
derive_builder = "0.20.0"
serde_qs = "0.13.0"
[dev-dependencies]
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
dotenvy = "0.15.7"
color-eyre = "0.6.3"
wiremock = "0.6.0"
[features]
default = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]