mirror of
https://github.com/redstrate/Auracite.git
synced 2025-05-13 05:27:46 +00:00
There's some data we want to save that's not available on the Lodestone, for example playtime information. Now you can install the Dalamud plugin (not currently distributed) to save playtime information. In the future, we can expand this to all sorts of interesting things!
31 lines
No EOL
828 B
TOML
31 lines
No EOL
828 B
TOML
[package]
|
|
name = "auracite"
|
|
version = "0.1.0"
|
|
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"
|
|
|
|
# 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" } |