mirror of
https://github.com/redstrate/Auracite.git
synced 2025-04-26 14:17:45 +00:00
Detail what each of the dependencies are for
This commit is contained in:
parent
5f76694211
commit
b9bf515412
1 changed files with 11 additions and 0 deletions
11
Cargo.toml
11
Cargo.toml
|
@ -5,11 +5,22 @@ edition = "2021"
|
||||||
description = "Export your FFXIV character in portable, generic formats"
|
description = "Export your FFXIV character in portable, generic formats"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
# Used to scrape the Lodestone HTML pages
|
||||||
scraper = "0.20"
|
scraper = "0.20"
|
||||||
|
|
||||||
|
# Used to serialize the JSON data we export
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
||||||
|
# Used to do some misc regex operations during scraping
|
||||||
regex = "1.11"
|
regex = "1.11"
|
||||||
|
|
||||||
|
# CLI interface
|
||||||
clap = { version = "4.5", features = ["derive"] }
|
clap = { version = "4.5", features = ["derive"] }
|
||||||
clap_derive = "4.5"
|
clap_derive = "4.5"
|
||||||
|
|
||||||
|
# Download HTML pages, images, etc
|
||||||
downloader = "0.2"
|
downloader = "0.2"
|
||||||
|
|
||||||
|
# Used to generate the HTML page to easily preview your exported data
|
||||||
minijinja = "2.0"
|
minijinja = "2.0"
|
Loading…
Add table
Reference in a new issue