-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (28 loc) · 905 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
[package]
name = "vegapull"
version = "0.1.0"
description = "Command line tool for scraping data for the One Piece Trading Card Game"
categories = ["command-line-utilities"]
keywords = ["cli", "one-piece", "tcg", "manga", "scraper"]
repository = "https://github.com/Coko7/vegapull"
license = "GPL-3.0-only"
edition = "2021"
rust-version = "1.74.1"
authors = ["Coko <[email protected]>"]
homepage = "https://github.com/Coko7/vegapull"
readme = "README.md"
[dependencies]
anyhow = "1.0.86"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive"] }
clap-verbosity-flag = "2.2.2"
directories = "5.0.1"
env_logger = "0.11.5"
log = "0.4.22"
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["blocking"] }
scraper = "0.20.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
toml = "0.8.19"
yansi = "1.0.1"