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"
|
|
|
|
|
2024-10-30 16:27:32 -04:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2024-10-31 18:18:06 -04:00
|
|
|
|
2024-10-31 18:16:42 -04:00
|
|
|
[build-dependencies]
|
2024-10-31 19:33:45 -04:00
|
|
|
cxx-qt-build = { git = "https://github.com/KDAB/cxx-qt", branch = "main", features = ["link_qt_object_files"], default-features = false }
|
2024-10-30 16:27:32 -04:00
|
|
|
|
2024-09-29 17:45:53 -04:00
|
|
|
[dependencies]
|
2024-10-05 10:03:36 -04:00
|
|
|
# Used to scrape the Lodestone HTML pages
|
2024-10-31 23:11:26 -04:00
|
|
|
# NOTE: Do not upgrade to 0.21, as it crashes in WebAssembly for some reason. Report this upstream.
|
|
|
|
scraper = { version ="0.20" }
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Used to serialize the JSON data we export
|
2024-10-31 18:35:50 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"], default-features = false }
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Used to do some misc regex operations during scraping
|
2024-10-31 18:35:50 -04:00
|
|
|
regex = { version = "1.11", default-features = false, features = ["unicode-perl"] }
|
2024-10-05 10:03:36 -04:00
|
|
|
|
|
|
|
# Used to generate the HTML page to easily preview your exported data
|
2024-10-31 18:35:50 -04:00
|
|
|
minijinja = { version = "2.0", default-features = false }
|
2024-10-05 12:10:31 -04:00
|
|
|
|
2024-10-31 18:35:50 -04:00
|
|
|
# Download files
|
2024-10-31 21:46:50 -04:00
|
|
|
reqwest = { version = "0.12" }
|
2024-10-31 18:16:42 -04:00
|
|
|
|
|
|
|
# Zip the character archive
|
|
|
|
zip = { version = "2.2", default-features = false }
|
2024-10-30 16:32:50 -04:00
|
|
|
|
2024-10-30 16:27:32 -04:00
|
|
|
# Not used directly by us, but to disable the "std" feature and is used by the scraper crate.
|
|
|
|
ahash = { version = "0.8.0", default-features = false }
|
|
|
|
|
|
|
|
# Ditto, but used by the ahash crate.
|
2024-10-31 18:35:50 -04:00
|
|
|
getrandom = { version = "0.2", features = ["js"], default-features = false }
|
2024-10-30 16:27:32 -04:00
|
|
|
|
2024-10-31 18:16:42 -04:00
|
|
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
2024-10-31 18:35:50 -04:00
|
|
|
# Used to generate the WebAssembly version
|
|
|
|
wasm-bindgen = { version = "0.2.95", default-features = false }
|
|
|
|
wasm-bindgen-futures = { version = "0.4", default-features = false }
|
2024-10-31 18:16:42 -04:00
|
|
|
|
|
|
|
# For async
|
2024-10-31 18:35:50 -04:00
|
|
|
tokio = { version = "1.41", features = ["rt", "macros"], default-features = false }
|
2024-10-31 18:16:42 -04:00
|
|
|
|
|
|
|
# Encoding the character archive to base64 so the browser can download it
|
2024-10-31 18:35:50 -04:00
|
|
|
base64 = { version = "0.22", default-features = false }
|
|
|
|
|
|
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
2024-10-31 18:16:42 -04:00
|
|
|
|
2024-10-30 16:27:32 -04:00
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
2024-10-31 18:16:42 -04:00
|
|
|
# For async
|
2024-10-31 18:35:50 -04:00
|
|
|
tokio = { version = "1.41", features = ["rt", "rt-multi-thread", "macros"], default-features = false }
|
2024-10-31 18:16:42 -04:00
|
|
|
|
|
|
|
# Used for the Qt UI
|
2024-10-31 19:33:45 -04:00
|
|
|
cxx = { version = "1.0", default-features = false }
|
|
|
|
cxx-qt = { git = "https://github.com/KDAB/cxx-qt", branch = "main", default-features = false }
|
|
|
|
cxx-qt-lib = { git = "https://github.com/KDAB/cxx-qt", branch = "main", default-features = false }
|
|
|
|
cxx-qt-lib-extras = { git = "https://github.com/KDAB/cxx-qt", branch = "main", default-features = false }
|
|
|
|
cxx-kde-frameworks = { git = "https://invent.kde.org/libraries/cxx-kde-frameworks", branch = "work/redstrate/kaboutdata-process-cmdline", default-features = false }
|
2024-10-31 18:35:50 -04:00
|
|
|
|
|
|
|
serde_json = { version = "1.0", default-features = false, features = ["std"] }
|