paypal-rs/Cargo.toml

29 lines
807 B
TOML
Raw Normal View History

2020-06-08 20:30:45 +00:00
[package]
name = "paypal-rs"
2021-01-09 10:41:17 +00:00
version = "0.2.0-alpha.4"
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]
2021-01-05 21:01:43 +00:00
reqwest = { version = "0.11.0", features = ["json"] }
2020-12-15 09:49:50 +00:00
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
2021-02-08 08:48:41 +00:00
serde_with = "1.6.2"
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 21:01:43 +00:00
bytes = "1.0.0"
[dev-dependencies]
2021-01-08 15:06:25 +00:00
tokio = { version = "1.0.1", features = ["macros", "rt-multi-thread"] }
2020-06-09 10:57:23 +00:00
dotenv = "0.15.0"