paypal-rs/Cargo.toml

24 lines
697 B
TOML
Raw Normal View History

2020-06-08 20:30:45 +00:00
[package]
name = "paypal-rs"
2020-06-10 14:44:00 +00:00
version = "0.1.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/"
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]
reqwest = { version = "0.10", features = ["json"] }
tokio = { version = "0.2", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
2020-06-10 10:29:13 +00:00
serde_json = "1.0"
2020-06-09 10:57:23 +00:00
jsonwebtoken = "7"
base64 = "0.12"
2020-06-08 20:30:45 +00:00
log = "0.4"
2020-06-09 10:57:23 +00:00
dotenv = "0.15.0"
2020-06-10 14:19:02 +00:00
chrono = { version = "0.4", features = ["serde"] }