-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (50 loc) · 1.41 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "resolute-app"
version = "0.8.3"
description = "Resolute, a mod manager for Resonite"
authors = ["Schuyler Cebulskie <[email protected]>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/Gawdl3y/Resolute"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2.0", features = [] }
[dependencies]
resolute = { path = "../resolute" }
tokio = { version = "1.43", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
url = "2.5"
log = "0.4"
sha2 = "0.10"
itertools = "0.14"
path-clean = "1.0"
opener = "0.7"
reqwest = { version = "0.12", features = [
"stream",
"rustls-tls",
"http2",
"charset",
"gzip",
"brotli",
"zstd",
"deflate",
], default-features = false }
tauri = { version = "2.3", features = [] }
tauri-plugin-deep-link = "2.2"
tauri-plugin-dialog = "2.2"
tauri-plugin-fs = "2.2"
tauri-plugin-notification = "2.2"
tauri-plugin-process = "2.2"
tauri-plugin-shell = "2.2"
tauri-plugin-updater = "2.5"
tauri-plugin-log = "2.2"
tauri-plugin-single-instance = "2.2"
tauri-plugin-window-state = "2.2"
tauri-plugin-store = "2.2"
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]