mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-07 15:13:47 +00:00
86 lines
1.8 KiB
TOML
86 lines
1.8 KiB
TOML
[package]
|
|
name = "objdiff-gui"
|
|
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"
|
|
|
|
[[bin]]
|
|
name = "objdiff"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = ["glow", "wgpu", "wsl"]
|
|
glow = ["eframe/glow"]
|
|
wgpu = ["eframe/wgpu", "dep:wgpu"]
|
|
wsl = []
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
cfg-if = "1.0"
|
|
const_format = "0.2"
|
|
cwdemangle = "1.0"
|
|
dirs = "6.0"
|
|
egui = "0.31"
|
|
egui_extras = "0.31"
|
|
filetime = "0.2"
|
|
float-ord = "0.3"
|
|
font-kit = "0.14"
|
|
globset = { version = "0.4", features = ["serde1"] }
|
|
log = "0.4"
|
|
objdiff-core = { path = "../objdiff-core", features = ["all"] }
|
|
open = "5.3"
|
|
png = "0.17"
|
|
pollster = "0.4"
|
|
regex = "1.11"
|
|
rfd = { version = "0.15" } #, default-features = false, features = ['xdg-portal']
|
|
rlwinmdec = { version = "1.0", git = "https://github.com/CelestialAmber/rlwinmdec.git" }
|
|
ron = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
time = { version = "0.3", features = ["formatting", "local-offset"] }
|
|
typed-path = "0.10"
|
|
winit = { version = "0.30", features = ["wayland-csd-adwaita"] }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Keep version in sync with egui
|
|
[dependencies.eframe]
|
|
version = "0.31"
|
|
features = [
|
|
"default_fonts",
|
|
"persistence",
|
|
"wayland",
|
|
"x11",
|
|
]
|
|
default-features = false
|
|
|
|
# Keep version in sync with eframe
|
|
[dependencies.wgpu]
|
|
version = "24.0"
|
|
features = [
|
|
"dx12",
|
|
"metal",
|
|
"webgpu",
|
|
]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
exec = "0.3"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
tauri-winres = "0.3"
|