From b9bf515412289fc0e6c3fec8a23b92be40268bce Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 5 Oct 2024 10:03:36 -0400 Subject: [PATCH] Detail what each of the dependencies are for --- Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e055aeb..7bd33c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,11 +5,22 @@ edition = "2021" description = "Export your FFXIV character in portable, generic formats" [dependencies] +# Used to scrape the Lodestone HTML pages scraper = "0.20" + +# Used to serialize the JSON data we export serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" + +# Used to do some misc regex operations during scraping regex = "1.11" + +# CLI interface clap = { version = "4.5", features = ["derive"] } clap_derive = "4.5" + +# Download HTML pages, images, etc downloader = "0.2" + +# Used to generate the HTML page to easily preview your exported data minijinja = "2.0" \ No newline at end of file