-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
31 lines (28 loc) · 880 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "reqwest-oauth1"
version = "0.3.0"
authors = ["Karno <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Add OAuth1 signature to reqwest with oauth1-request."
repository = "https://github.com/karno/reqwest-oauth1"
readme = "README.md"
keywords = ["oauth", "reqwest", "request", "http"]
categories = ["web-programming::http-client", "authentication"]
[features]
default = ["multipart"]
multipart = ["reqwest/multipart"]
json = ["reqwest/json"]
blocking = ["reqwest/blocking"]
[dependencies]
http = "1.1.0"
oauth1-request = "0.3.3"
reqwest = { version = "0.12.7", default-features = false }
serde = { version = "1.0.116", features = ["derive"] }
serde_urlencoded = "0.7.0"
url = "2.2.0"
async-trait = "0.1.40"
thiserror = "1.0.20"
[dev-dependencies]
percent-encoding = "2.1.0"
tokio = { version = "1.0.0", features = ["full"] }