This commit is contained in:
Edgar 2023-03-10 13:14:56 +01:00
parent d343fc4b14
commit 6f7ce7ce75
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387

View file

@ -1,6 +1,6 @@
[package]
name = "paypal-rs"
version = "0.2.4"
version = "0.2.5"
authors = ["Edgar <git@edgarluque.com>"]
description = "A library that wraps the paypal api asynchronously."
repository = "https://github.com/edg-l/paypal-rs/"
@ -13,23 +13,23 @@ edition = "2021"
[dependencies]
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"
reqwest = { version = "0.11.14", default-features = false, features = ["json"] }
serde = { version = "1.0.154", features = ["derive"] }
serde_json = "1.0.94"
serde_with = "2.3.0"
chrono = { version = "0.4.23", features = ["serde"] }
jsonwebtoken = "8.2.0"
base64 = "0.21.0"
log = "0.4.17"
bytes = "1.3.0"
bytes = "1.4.0"
derive_builder = "0.12.0"
serde_qs = "0.11.0"
serde_qs = "0.12.0"
[dev-dependencies]
tokio = { version = "1.24.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }
dotenvy = "0.15.6"
color-eyre = "0.6.2"
wiremock = "0.5.16"
wiremock = "0.5.17"
[features]
default = ["reqwest/native-tls"]