paypal-rs/Cargo.toml

32 lines
882 B
TOML
Raw Normal View History

2020-06-08 20:30:45 +00:00
[package]
name = "paypal-rs"
version = "0.2.0-alpha.6"
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"
edition = "2021"
2020-06-08 20:30:45 +00:00
[dependencies]
reqwest = { version = "0.11.10", features = ["json"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
serde_with = "1.12.1"
2021-12-30 22:48:09 +00:00
chrono = { version = "0.4.19", features = ["serde"] }
jsonwebtoken = "8.0.1"
2021-12-30 22:48:09 +00:00
base64 = "0.13.0"
log = "0.4.16"
2021-12-30 22:48:09 +00:00
bytes = "1.1.0"
2022-04-08 09:13:42 +00:00
derive_builder = "0.11.1"
serde_qs = "0.9.1"
[dev-dependencies]
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
2021-12-30 22:48:09 +00:00
dotenv = "0.15.0"
2022-04-08 07:20:42 +00:00
anyhow = "1.0.56"