You've already forked AstralRinth
forked from didirus/AstralRinth
* chore: inherit dependencies from workspace, optimize some deps out * Update bitflags from 2.9.0 to 2.9.1 * Fix temp directory leak in check_java_at_filepath * Fix build * Fix lint * chore(app-lib): refactor overkill `futures` executor usage to Tokio MPSC * chore: fix Clippy lint * tweak: optimize out dependency on OpenSSL source build Contrary to what I expected before, this was caused due to the Tauri updater plugin using a different TLS stack than everything else. * chore(labrinth): drop now unused dependency * Update zip because 2.6.1 got yanked * Downgrade weezl to 0.1.8 * Mention that p256 is also a blocker for rand 0.9 * chore: sidestep GitHub review requirements * chore: sidestep GitHub review requirements (2) * chore: sidestep GitHub review requirements (3) --------- Co-authored-by: Josiah Glosson <soujournme@gmail.com>
59 lines
1.8 KiB
TOML
59 lines
1.8 KiB
TOML
[package]
|
|
name = "theseus_gui"
|
|
version = "0.9.5"
|
|
description = "The Modrinth App is a desktop application for managing your Minecraft mods"
|
|
license = "GPL-3.0-only"
|
|
repository = "https://github.com/modrinth/code/apps/app/"
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true, features = ["codegen"] }
|
|
|
|
[dependencies]
|
|
theseus = { workspace = true, features = ["tauri"] }
|
|
|
|
serde_json.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_with.workspace = true
|
|
|
|
tauri = { workspace = true, features = ["devtools", "macos-private-api", "protocol-asset", "unstable"] }
|
|
tauri-plugin-window-state.workspace = true
|
|
tauri-plugin-deep-link.workspace = true
|
|
tauri-plugin-os.workspace = true
|
|
tauri-plugin-opener.workspace = true
|
|
tauri-plugin-dialog.workspace = true
|
|
tauri-plugin-updater.workspace = true
|
|
tauri-plugin-single-instance.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["time"] }
|
|
thiserror.workspace = true
|
|
daedalus.workspace = true
|
|
chrono.workspace = true
|
|
either.workspace = true
|
|
|
|
url.workspace = true
|
|
urlencoding.workspace = true
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
|
|
tracing.workspace = true
|
|
tracing-error.workspace = true
|
|
|
|
dashmap.workspace = true
|
|
paste.workspace = true
|
|
enumset = { workspace = true, features = ["serde"] }
|
|
|
|
native-dialog.workspace = true
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
tauri-plugin-updater = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
# by default Tauri runs in production mode
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
default = ["custom-protocol"]
|
|
# this feature is used for production builds where `devPath` points to the filesystem
|
|
# DO NOT remove this
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
updater = []
|