2020-06-08 20:30:45 +00:00
|
|
|
[package]
|
|
|
|
name = "paypal-rs"
|
2022-07-05 06:16:07 +00:00
|
|
|
version = "0.2.0"
|
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"
|
2020-06-08 20:30:45 +00:00
|
|
|
keywords = ["paypal", "api", "async"]
|
|
|
|
categories = ["api-bindings", "asynchronous"]
|
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"
|
2022-04-08 07:17:36 +00:00
|
|
|
edition = "2021"
|
2020-06-08 20:30:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-05 06:16:43 +00:00
|
|
|
reqwest = { version = "0.11.11", default-features = false, features = ["json"] }
|
2022-09-01 08:26:18 +00:00
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
|
|
|
serde_json = "1.0.85"
|
2022-08-31 09:55:50 +00:00
|
|
|
serde_with = "2.0.0"
|
2022-09-01 08:26:18 +00:00
|
|
|
chrono = { version = "0.4.22", features = ["serde"] }
|
2022-07-05 06:16:43 +00:00
|
|
|
jsonwebtoken = "8.1.1"
|
2021-12-30 22:48:09 +00:00
|
|
|
base64 = "0.13.0"
|
2022-05-12 07:18:22 +00:00
|
|
|
log = "0.4.17"
|
2022-09-01 08:26:18 +00:00
|
|
|
bytes = "1.2.1"
|
2022-04-26 07:25:39 +00:00
|
|
|
derive_builder = "0.11.2"
|
2022-08-31 09:55:42 +00:00
|
|
|
serde_qs = "0.10.1"
|
2021-01-05 11:22:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-01 08:26:18 +00:00
|
|
|
tokio = { version = "1.20.1", features = ["macros", "rt-multi-thread"] }
|
2021-12-30 22:48:09 +00:00
|
|
|
dotenv = "0.15.0"
|
2022-09-01 08:26:18 +00:00
|
|
|
anyhow = "1.0.63"
|
|
|
|
color-eyre = "0.6.2"
|
2022-04-28 07:40:53 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["reqwest/native-tls"]
|
|
|
|
rustls = ["reqwest/rustls-tls"]
|