gupax/Cargo.toml

124 lines
3.9 KiB
TOML
Raw Normal View History

2022-10-01 16:58:22 +00:00
[package]
name = "gupax"
2024-05-10 19:17:47 +00:00
version = "1.3.7"
2023-02-26 16:44:25 +00:00
authors = ["hinto-janai <hinto.janai@protonmail.com>"]
2022-11-02 22:18:41 +00:00
description = "GUI for P2Pool+XMRig"
2023-02-26 16:44:25 +00:00
documentation = "https://github.com/hinto-janai/gupax"
2022-10-01 16:58:22 +00:00
edition = "2021"
[profile.release]
panic = "abort"
debug = false
strip = "symbols"
codegen-units = 1
lto = true
2023-05-11 20:37:16 +00:00
[profile.dev]
opt-level = 1
debug = true
strip = "none"
debug-assertions = true
overflow-checks = true
incremental = true
[features]
default = []
distro = []
2022-10-01 16:58:22 +00:00
[dependencies]
2024-05-09 20:56:59 +00:00
anyhow = "1.0.83"
arti-client = { version = "0.18.0", features = ["static"] }
arti-hyper = "0.18.0"
benri = "0.1.12"
2024-05-09 20:56:59 +00:00
bytes = "1.6.0"
dirs = "5.0.1"
2022-12-15 21:23:26 +00:00
#--------------------------------------------------------------------------------
2024-05-09 20:32:26 +00:00
egui = "0.27.2"
egui_extras = { version = "0.27.2", features = ["image"] }
2023-12-28 13:57:29 +00:00
## 2023-12-28: https://github.com/hinto-janai/gupax/issues/68
##
## 2024-03-18: Both `glow` and `wgpu` seem to crash:
## <https://github.com/hinto-janai/gupax/issues/84>
## `wgpu` seems to crash on less computers though so...
2024-05-09 20:32:26 +00:00
eframe = { version = "0.27.2", features = ["wgpu"] }
2023-12-28 13:57:29 +00:00
## 2023-02-06: The below gets fixed by using the [wgpu] backend instead of [glow]
2023-02-06 22:59:51 +00:00
## It also fixes crashes on CPU-based graphics. Only used for Windows.
## Using [wgpu] actually crashes macOS (fixed in 0.20.x though).
## [external/egui/crates/eframe/src/native/run.rs] line 41: [.with_srgb(true)]
## This line causes a [panic!] inside a Windows VM, from a Linux host.
## There are many issue threads and PRs to fix it but for now,
## this is here for convenience sake when I'm testing.
## The only change is [.with_srgb()] is set to [false].
2022-11-02 22:18:41 +00:00
#eframe = { path = "external/egui/crates/eframe" }
#egui = { path = "external/egui/crates/egui" }
#egui_glow = { path = "external/egui/crates/egui_glow"}
#egui_extras = { path = "external/egui/crates/egui_extras", features = ["image"] }
#--------------------------------------------------------------------------------
env_logger = "0.10.0"
2024-05-09 20:56:59 +00:00
figment = { version = "0.10.18", features = ["toml"] }
hyper = "0.14.26"
hyper-tls = "0.5.0"
2024-05-09 20:56:59 +00:00
image = { version = "0.25.1", features = ["png"] }
log = "0.4.21"
num-format = { version = "0.4.4", default-features = false }
2024-05-09 20:56:59 +00:00
once_cell = "1.19.0"
portable-pty = "0.8.1"
rand = "0.8.5"
2024-05-09 20:56:59 +00:00
regex = { version = "1.10.4", default-features = false, features = ["perf"] }
rfd = "0.14.1"
serde = { version = "1.0.201", features = ["rc", "derive"] }
serde_json = "1.0"
sysinfo = { version = "0.29.0", default-features = false }
tls-api = "0.9.0"
tokio = { version = "1.21.2", features = ["rt", "time", "macros", "process"] }
toml = { version = "0.7.4", features = ["preserve_order"] }
2024-05-09 20:56:59 +00:00
tor-rtcompat = "0.18.0"
walkdir = "2.5.0"
zeroize = "1.7.0"
strsim = "0.11.1"
2023-12-25 14:52:24 +00:00
strip-ansi-escapes = "0.2.0"
# Unix dependencies
[target.'cfg(unix)'.dependencies]
2024-05-09 20:56:59 +00:00
tar = "0.4.40"
flate2 = "1.0"
sudo = "0.6.0"
# macOS
[target.'cfg(target_os = "macos")'.dependencies]
# On apple-darwin targets there is an issue with the native and rustls
# tls implementation so this makes it fall back to the openssl variant.
#
# https://gitlab.torproject.org/tpo/core/arti/-/issues/715
tls-api-openssl = "0.9.0"
2023-06-04 13:52:04 +00:00
# `arti-client` with `static` doesn't actually
# statically link OpenSSL on macOS, both x64 + ARM.
# Should probably file a bug report.
2024-05-10 00:19:42 +00:00
openssl = { version = "0.10", features = ["vendored"] }
2023-06-04 13:52:04 +00:00
# We don't even use `xz` in `flate2` but this gets dynamically
# linked as well which causes problems, so statically link it.
2024-05-10 00:19:42 +00:00
lzma-sys = { version = "0.1", features = ["static"] }
[target.'cfg(not(target_os = "macos"))'.dependencies]
tls-api-native-tls = "0.9.0"
# Windows dependencies
[target.'cfg(windows)'.dependencies]
2024-05-09 20:56:59 +00:00
zip = "1.2.2"
is_elevated = "0.1.2"
2024-05-09 20:56:59 +00:00
wgpu = { version = "0.20.0", features = ["angle"] }
2022-10-01 16:58:22 +00:00
# For Windows build (icon)
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
static_vcruntime = "2.0"
2022-10-01 16:58:22 +00:00
# For macOS build (cargo-bundle)
[package.metadata.bundle]
name = "Gupax"
2023-02-26 16:44:25 +00:00
identifier = "com.github.hinto-janai.gupax"
2022-11-02 22:18:41 +00:00
icon = ["images/icons/icon@2x.png"]
category = "public.app-category.utilities"