paypal-rs/Cargo.toml

37 lines
1,015 B
TOML
Raw Normal View History

2020-06-08 20:30:45 +00:00
[package]
name = "paypal-rs"
2023-01-11 12:43:22 +00:00
version = "0.2.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/"
2021-07-02 09:49:16 +00:00
license = "MIT OR Apache-2.0"
keywords = ["paypal", "paypal-api"]
categories = ["api-bindings", "web-programming::http-client"]
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]
2023-01-11 12:43:22 +00:00
reqwest = { version = "0.11.13", default-features = false, features = ["json"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_with = "2.2.0"
chrono = { version = "0.4.23", features = ["serde"] }
jsonwebtoken = "8.2.0"
base64 = "0.21.0"
2022-05-12 07:18:22 +00:00
log = "0.4.17"
2023-01-11 12:43:22 +00:00
bytes = "1.3.0"
derive_builder = "0.12.0"
serde_qs = "0.11.0"
[dev-dependencies]
2023-01-11 12:43:22 +00:00
tokio = { version = "1.24.1", features = ["macros", "rt-multi-thread"] }
dotenvy = "0.15.6"
2022-09-01 08:26:18 +00:00
color-eyre = "0.6.2"
2023-01-11 12:43:22 +00:00
wiremock = "0.5.16"
[features]
default = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]