paypal-rs/Cargo.toml

29 lines
787 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/"
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 = "2018"
[dependencies]
2021-07-02 09:23:12 +00:00
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "1.9"
chrono = { version = "0.4", features = ["serde"] }
jsonwebtoken = "7.2"
base64 = "0.13"
log = "0.4"
bytes = "1.0"
[dev-dependencies]
2021-07-02 09:23:12 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
dotenv = "0.15"