49 lines
1.6 KiB
TOML
49 lines
1.6 KiB
TOML
[package]
|
|
name = "plugsnatcher"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "plugsnatcher_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-dialog = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
zip = "0.6"
|
|
yaml-rust = "0.4"
|
|
# walkdir = "2.4" # Not currently used, commented out
|
|
regex = "1.10" # Still needed elsewhere in the codebase
|
|
sha2 = "0.10"
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } # Updated version, enabled rustls
|
|
# scraper = "0.19.0" # No longer used for SpigotMCCrawler
|
|
urlencoding = "2.1.3" # Reverted version
|
|
semver = "1.0"
|
|
url = "2.5"
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] } # Changed features from "full"
|
|
# --- Add Caching Dependencies ---
|
|
cached = { version = "0.52", features = ["proc_macro", "async", "tokio"] }
|
|
async-mutex = "1.4" # For locking cache access within HttpClient
|
|
# --- End Caching Dependencies ---
|
|
base64 = "0.21" # For decoding SpigotMC changelog data
|
|
walkdir = "2.5.0"
|
|
|
|
[features]
|
|
# default = ["custom-protocol"]
|
|
|