forked from cornip/agent-twitter-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 849 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
[package]
name = "agent-twitter-client"
version = "0.1.2"
edition = "2021"
description = "A Twitter/X API client library using cookies"
license = "MIT"
repository = "https://github.com/cornip/agent-twitter-client"
readme = "README.md"
keywords = ["twitter", "api", "client"]
categories = ["api-bindings", "web-programming::http-client"]
[dependencies]
reqwest = { version = "0.11", features = ["json", "cookies", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cookie = "0.16"
async-trait = "0.1"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
lazy_static = "1.4"
totp-rs = "5.4"
urlencoding = "2.1.3"
regex = "1.5"
url = "2.5.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
dotenv = "0.15"
[examples]
get_home_timeline = { path = "./examples/get_home_timeline.rs" }