-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
28 lines (27 loc) · 885 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
[package]
name = "shreddit"
version = "1.1.0"
edition = "2024"
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.88"
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.33", 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.15", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = { version = "1.44.1", features = ["rt", "macros"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }
parse_datetime = "0.8.0"