paypal-rs/Cargo.toml

37 lines
998 B
TOML
Raw Normal View History

2020-06-08 20:30:45 +00:00
[package]
name = "paypal-rs"
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"
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"] }
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
serde_with = "2.0.0"
2021-12-30 22:48:09 +00:00
chrono = { version = "0.4.19", 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"
2021-12-30 22:48:09 +00:00
bytes = "1.1.0"
2022-04-26 07:25:39 +00:00
derive_builder = "0.11.2"
serde_qs = "0.10.1"
[dev-dependencies]
2022-07-05 06:16:43 +00:00
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread"] }
2021-12-30 22:48:09 +00:00
dotenv = "0.15.0"
2022-07-05 06:16:43 +00:00
anyhow = "1.0.58"
2022-04-26 07:25:39 +00:00
color-eyre = "0.6.1"
[features]
default = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]