paypal-rs/Cargo.toml

37 lines
1,015 B
TOML
Raw Normal View History

2020-06-08 20:30:45 +00:00
[package]
name = "paypal-rs"
2023-03-10 12:14:56 +00:00
version = "0.2.5"
2020-06-08 20:30:45 +00:00
authors = ["Edgar <git@edgarluque.com>"]
description = "A library that wraps the paypal api asynchronously."
2020-06-08 20:35:55 +00:00
repository = "https://github.com/edg-l/paypal-rs/"
2021-07-02 09:49:16 +00:00
license = "MIT OR Apache-2.0"
keywords = ["paypal", "paypal-api"]
categories = ["api-bindings", "web-programming::http-client"]
2020-06-09 13:04:14 +00:00
documentation = "https://docs.rs/paypal-rs"
2020-06-08 20:30:45 +00:00
readme = "README.md"
edition = "2021"
2020-06-08 20:30:45 +00:00
[dependencies]
2023-03-23 07:23:51 +00:00
reqwest = { version = "0.11.15", default-features = false, features = ["json"] }
serde = { version = "1.0.158", features = ["derive"] }
2023-03-10 12:14:56 +00:00
serde_json = "1.0.94"
2023-03-23 07:23:51 +00:00
serde_with = "2.3.1"
chrono = { version = "0.4.24", features = ["serde"] }
jsonwebtoken = "8.3.0"
2023-01-11 12:43:22 +00:00
base64 = "0.21.0"
2022-05-12 07:18:22 +00:00
log = "0.4.17"
2023-03-10 12:14:56 +00:00
bytes = "1.4.0"
2023-01-11 12:43:22 +00:00
derive_builder = "0.12.0"
2023-03-10 12:14:56 +00:00
serde_qs = "0.12.0"
[dev-dependencies]
2023-03-10 12:14:56 +00:00
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }
2023-03-23 07:23:51 +00:00
dotenvy = "0.15.7"
2022-09-01 08:26:18 +00:00
color-eyre = "0.6.2"
2023-03-10 12:14:56 +00:00
wiremock = "0.5.17"
[features]
default = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]