-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
27 lines (26 loc) · 860 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 = "shreddit"
version = "0.9.11"
edition = "2021"
authors = ["Andrew Banchich <[email protected]>"]
description = "Overwrite and delete your Reddit account history."
license = "MIT"
repository = "https://github.com/andrewbanchich/shreddit"
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.68"
chrono = { version = "0.4.26", features = ["serde"] }
clap = { version = "4.5.23", features = ["derive", "env"] }
csv = "1.2.2"
dotenvy = "0.15.7"
futures-core = "0.3.31"
futures-util = "0.3.28"
reqwest = { version = "0.12.12", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
tokio = { version = "1.28.2", features = ["rt", "macros"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }