-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (37 loc) · 1.02 KB
/
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
32
33
34
35
36
37
38
39
[package]
name = "theory_grabber"
license = "GPL-3.0-only"
version = "2.18.2"
authors = ["Narfinger <[email protected]>"]
edition = "2021"
categories = ["command-line-utilities"]
repository = "https://github.com/Narfinger/TheoryGrabber"
description = "Downloads papers from arxiv and eccc and stores them in a local directory. Saves the last date looked at."
[dependencies]
anyhow = "1.0.92"
clap = { version = "4.5.20", features = ["derive"] }
console = "0.15.8"
chrono = { version = "0.4.38", features = [
"serde",
] } # Date and time library for Rust
chrono-tz = "0.10"
log = "0.4.22"
pretty_env_logger = "0.5.0"
indicatif = "0.17.8"
rayon = "1.10.0"
reqwest = { version = "0.12.9", features = [
'blocking',
'json',
] } # higher level HTTP client library
select = "0.6.0"
serde = { version = "1.0", features = ["derive"] }
tempfile = "3.13.0"
toml = "0.8.19"
#oauth2 = "4.1.0"
quick-xml = "0.37.0"
nom = "7.1.3"
url = "2.5.2"
directories = "5.0.1"
itertools = "0.13.0"
ratatui = "0.29.0"
crossterm = "0.28.1"