upd deps
This commit is contained in:
parent
1b060b7fb1
commit
d4bbe2340f
12
Cargo.toml
12
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "paypal-rs"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0-alpha.0"
|
||||
authors = ["Edgar <git@edgarluque.com>"]
|
||||
description = "A library that wraps the paypal api asynchronously."
|
||||
repository = "https://github.com/edg-l/paypal-rs/"
|
||||
|
@ -13,13 +13,13 @@ edition = "2018"
|
|||
|
||||
|
||||
[dependencies]
|
||||
reqwest = { version = "0.10.8", features = ["json"] }
|
||||
tokio = { version = "0.2.22", features = ["full"] }
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
serde_json = "1.0.59"
|
||||
reqwest = { version = "0.10.10", features = ["json"] }
|
||||
tokio = { version = "0.3.6", features = ["full"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.60"
|
||||
jsonwebtoken = "7.2.0"
|
||||
base64 = "0.13.0"
|
||||
log = "0.4.11"
|
||||
dotenv = "0.15.0"
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
bytes = "0.5.6"
|
||||
bytes = "0.5"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
use crate::common::*;
|
||||
use crate::errors;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::{collections::HashMap};
|
||||
use std::collections::HashMap;
|
||||
use bytes::Bytes;
|
||||
|
||||
/// Paypal File reference
|
||||
|
|
Loading…
Reference in a new issue