Files
objdiff/objdiff-gui/Cargo.toml
T

97 lines
2.0 KiB
TOML
Raw 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"
2024-12-01 22:22:35 -07:00
bytes = "1.9"
2024-09-09 19:26:46 -06:00
cfg-if = "1.0"
const_format = "0.2"
cwdemangle = "1.0"
2024-12-08 21:36:37 -07:00
cwextab = "1.0"
2024-09-09 19:26:46 -06:00
dirs = "5.0"
2025-01-01 20:45:48 -07:00
egui = "0.30"
egui_extras = "0.30"
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"
objdiff-core = { path = "../objdiff-core", features = ["all"] }
2024-09-28 10:55:25 -06:00
open = "5.3"
2024-09-09 19:26:46 -06:00
png = "0.17"
2024-12-01 22:22:35 -07:00
pollster = "0.4"
2024-10-03 22:00:43 -06:00
regex = "1.11"
2024-09-26 23:51:49 -06:00
rfd = { version = "0.15" } #, default-features = false, features = ['xdg-portal']
2024-09-09 19:26:46 -06:00
rlwinmdec = "1.0"
ron = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shell-escape = "0.1"
strum = { version = "0.26", features = ["derive"] }
time = { version = "0.3", features = ["formatting", "local-offset"] }
2024-06-05 18:00:37 -06:00
# Keep version in sync with egui
[dependencies.eframe]
2025-01-01 20:45:48 -07:00
version = "0.30"
2024-06-05 18:00:37 -06:00
features = [
"default_fonts",
"persistence",
"wayland",
"x11",
]
default-features = false
# Keep version in sync with eframe
[dependencies.wgpu]
2025-01-01 20:45:48 -07:00
version = "23.0"
2024-06-05 18:00:37 -06:00
features = [
"dx12",
"metal",
"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"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
2024-09-09 19:26:46 -06:00
console_error_panic_hook = "0.1"
tracing-wasm = "0.2"
[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]
tauri-winres = "0.1"