33 lines
975 B
TOML
33 lines
975 B
TOML
[package]
|
|
name = "poe2-loot-filter-tauri"
|
|
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 = "poe2_loot_filter_tauri_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
reqwest = { version = "0.12.9", features = ["blocking"] }
|
|
serde_json = "1.0.133"
|
|
thiserror = "2.0.8"
|
|
directories = "5.0.1"
|
|
indoc = "2.0.5"
|
|
open = "5.3.1"
|
|
src-common = { path = "../src-common" }
|
|
serde = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|