2024-09-29 17:45:53 -04:00
|
|
|
[package]
|
|
|
|
name = "auracite"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Export your FFXIV character in portable, generic formats"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-05 10:03:36 -04:00
|
|
|
# Used to scrape the Lodestone HTML pages
|
2024-09-29 17:45:53 -04:00
|
|
|
scraper = "0.20"
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Used to serialize the JSON data we export
|
2024-09-29 17:45:53 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Used to do some misc regex operations during scraping
|
2024-09-29 17:45:53 -04:00
|
|
|
regex = "1.11"
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# CLI interface
|
2024-09-29 17:45:53 -04:00
|
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
clap_derive = "4.5"
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Download HTML pages, images, etc
|
2024-09-29 17:45:53 -04:00
|
|
|
downloader = "0.2"
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Used to generate the HTML page to easily preview your exported data
|
2024-10-05 12:10:31 -04:00
|
|
|
minijinja = "2.0"
|
|
|
|
|
|
|
|
# Used to communicate with the Dalamud plugin
|
|
|
|
# Needs my fork for allowing server shutdown
|
|
|
|
# TODO: upstream this or poke upstream to add this
|
|
|
|
touche = { git = "https://github.com/redstrate/touche" }
|