Files
objdiff/objdiff-gui/Cargo.toml
T

91 lines
1.8 KiB
TOML
Raw Permalink Normal View History

[package]
name = "objdiff-gui"
2024-09-09 19:32:22 -06:00
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "../README.md"
description = """
A local diffing tool for decompilation projects.
"""
publish = false
build = "build.rs"
2024-03-03 00:42:24 -05:00
[[bin]]
name = "objdiff"
path = "src/main.rs"
[features]
2024-08-11 13:33:10 -06:00
default = ["glow", "wgpu", "wsl"]
2024-06-05 18:00:37 -06:00
glow = ["eframe/glow"]
wgpu = ["eframe/wgpu", "dep:wgpu"]
wsl = []
[dependencies]
2024-09-09 19:26:46 -06:00
anyhow = "1.0"
argp = "0.4"
2024-09-09 19:26:46 -06:00
cfg-if = "1.0"
const_format = "0.2"
cwdemangle = "1.0"
2025-03-02 16:00:09 -07:00
dirs = "6.0"
2025-11-18 22:21:46 -07:00
egui = "0.33"
egui_extras = "0.33"
egui-notify = "0.21"
2024-09-09 19:26:46 -06:00
filetime = "0.2"
float-ord = "0.3"
font-kit = "0.14"
globset = { version = "0.4", features = ["serde1"] }
log = "0.4"
2025-02-26 22:47:42 -07:00
objdiff-core = { path = "../objdiff-core", features = ["all"] }
2024-09-28 10:55:25 -06:00
open = "5.3"
2025-11-18 22:21:46 -07:00
png = "0.18"
2024-12-01 22:22:35 -07:00
pollster = "0.4"
2025-11-18 22:21:46 -07:00
regex = "1.12"
2024-09-26 23:51:49 -06:00
rfd = { version = "0.15" } #, default-features = false, features = ['xdg-portal']
rlwinmdec = "1.1"
2025-11-18 22:21:46 -07:00
ron = "0.12"
2024-09-09 19:26:46 -06:00
serde = { version = "1.0", features = ["derive"] }
time = { version = "0.3", features = ["formatting", "local-offset"] }
2025-11-18 22:21:46 -07:00
typed-path = "0.12"
2025-07-28 17:30:52 -06:00
winit = { version = "0.30", features = ["default"] }
2025-02-20 17:48:00 -07:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2024-06-05 18:00:37 -06:00
# Keep version in sync with egui
[dependencies.eframe]
2025-11-18 22:21:46 -07:00
version = "0.33"
2024-06-05 18:00:37 -06:00
features = [
"default_fonts",
2025-07-28 17:30:52 -06:00
"glow",
2024-06-05 18:00:37 -06:00
"persistence",
"wayland",
"x11",
]
default-features = false
# Keep version in sync with eframe
[dependencies.wgpu]
2025-11-18 22:21:46 -07:00
version = "27.0"
2024-06-05 18:00:37 -06:00
features = [
"dx12",
"metal",
2025-07-28 17:30:52 -06:00
"gles",
"vulkan",
2024-06-05 18:00:37 -06:00
"webgpu",
]
optional = true
default-features = false
[target.'cfg(windows)'.dependencies]
2024-09-09 19:26:46 -06:00
winapi = "0.3"
[target.'cfg(unix)'.dependencies]
2024-09-09 19:26:46 -06:00
exec = "0.3"
[build-dependencies]
2024-09-09 19:26:46 -06:00
anyhow = "1.0"
2024-09-10 23:22:09 -06:00
[target.'cfg(windows)'.build-dependencies]
2025-03-02 16:00:09 -07:00
tauri-winres = "0.3"