-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 872 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
31
32
[package]
name = "autovor"
version = "0.1.0"
edition = "2021"
description = "Unofficial CLI for Endeavor"
repository = "https://github.com/thomasqueirozb/autovor"
readme = "README.md"
license = "AGPL-3.0"
categories = ["command-line-utilities"]
keywords = ["endeavor", "cli"]
[dependencies]
chrono = "0.4.22"
clap = { version = "4.1.1", features = ["derive"] }
color-eyre = "0.6.2"
csv = "1.1.6"
dotenvy = "0.15.7"
inquire = "0.5.3"
once_cell = "1.17.0"
reqwest = { git = "https://github.com/thomasqueirozb/reqwest", branch = "base_url", features = ["cookies"] }
reqwest_cookie_store = { git = "https://github.com/thomasqueirozb/reqwest_cookie_store" }
scraper = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
[profile.release]
opt-level = "z"
strip = true
lto = true