2020-06-08 20:30:45 +00:00
|
|
|
[package]
|
|
|
|
name = "paypal-rs"
|
2021-01-05 12:40:36 +00:00
|
|
|
version = "0.2.0-alpha.2"
|
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/"
|
|
|
|
license = "AGPL-3.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"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2020-12-15 09:49:50 +00:00
|
|
|
reqwest = { version = "0.10.10", features = ["json"] }
|
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
2021-01-05 11:22:34 +00:00
|
|
|
serde_json = "1.0.61"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2020-10-14 08:14:03 +00:00
|
|
|
jsonwebtoken = "7.2.0"
|
|
|
|
base64 = "0.13.0"
|
|
|
|
log = "0.4.11"
|
2021-01-05 11:22:34 +00:00
|
|
|
bytes = "~0.5.6"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Can't update this until reqwest updates.
|
|
|
|
tokio = { version = "0.2.24", features = ["macros", "rt-core"] }
|
2020-06-09 10:57:23 +00:00
|
|
|
dotenv = "0.15.0"
|