-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) 路 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (35 loc) 路 1.07 KB
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
[package]
name = "vegapull"
version = "1.2.3"
description = "Command line tool for scraping data for the One Piece Trading Card Game"
repository = "https://github.com/Coko7/vegapull"
authors = ["Coko <91132775+Coko7@users.noreply.github.com>"]
license = "GPL-3.0-only"
edition = "2021"
rust-version = "1.74.1"
keywords = ["cli", "one-piece", "tcg", "scraping", "data"]
categories = ["command-line-utilities", "filesystem", "multimedia::images"]
include = ["src/**", "config/*.toml", "Cargo.toml", "README.md"]
[[bin]]
name = "vega"
path = "src/main.rs"
[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"
unicode-normalization = "0.1.24"
rayon = "1.10.0"
inquire = "0.9.1"
inquire-derive = "0.9.0"
once_cell = "1.21.4"