forked from aoyagikouhei/twapi-reqwest-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 805 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
[package]
name = "twapi-reqwest"
version = "0.3.0"
authors = ["aoyagikouhei <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Twitter OAuth library used by reqwest."
repository = "https://github.com/aoyagikouhei/twapi-reqwest-rs"
keywords = ["twitter", "oauth"]
categories = ["api-bindings"]
readme = "Readme.md"
documentation = "https://docs.rs/twapi-reqwest"
[dependencies]
base64 = "0.13"
reqwest = { version = "0.11", features = ["json", "multipart"], default-features = false, optional = true }
serde_json = "1.0"
serde_urlencoded = "0.7"
twapi-oauth = "0.1.4"
#twapi-oauth = { path = "../twapi-oauth-rs" }
[features]
default = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls-tls"]
[dev-dependencies]
tokio = { version = "^1", features = ["macros"] }