Files
objdiff/Cargo.toml
T

77 lines
2.1 KiB
TOML
Raw Normal View History

2022-09-08 17:19:20 -04:00
[package]
name = "objdiff"
2023-01-21 00:54:54 -05:00
version = "0.3.0"
2022-09-08 17:19:20 -04:00
edition = "2021"
2023-01-16 16:51:40 -05:00
rust-version = "1.65"
2022-09-08 17:19:20 -04:00
authors = ["Luke Street <luke@street.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/encounter/objdiff"
readme = "README.md"
description = """
2022-12-06 17:53:32 -05:00
A local diffing tool for decompilation projects.
2022-09-08 17:19:20 -04:00
"""
2022-12-06 17:53:32 -05:00
publish = false
[profile.release]
lto = "thin"
strip = "debuginfo"
2022-09-08 17:19:20 -04:00
[dependencies]
2023-01-21 00:54:54 -05:00
anyhow = "1.0.68"
2022-12-10 10:34:03 -05:00
bytes = "1.3.0"
2022-12-06 17:53:32 -05:00
cfg-if = "1.0.0"
const_format = "0.2.30"
2023-01-21 00:54:54 -05:00
cwdemangle = "0.1.4"
eframe = { version = "0.20.1", features = ["persistence"] } # , "wgpu"
egui = "0.20.1"
egui_extras = "0.20.0"
2022-12-06 17:53:32 -05:00
flagset = "0.4.3"
log = "0.4.17"
memmap2 = "0.5.8"
notify = "5.0.0"
2023-01-21 00:54:54 -05:00
object = { version = "0.30.2", features = ["read_core", "std", "elf"], default-features = false }
2022-12-10 10:34:03 -05:00
png = "0.17.7"
2023-01-21 00:54:54 -05:00
ppc750cl = { git = "https://github.com/terorie/ppc750cl", rev = "9ae36eef34aa6d74e00972c7671f547a2acfd0aa" }
2023-01-21 03:27:09 -03:00
rabbitizer = "1.5.7"
2023-01-21 00:06:22 -05:00
rfd = { version = "0.10.0" } #, default-features = false, features = ['xdg-portal']
2022-12-06 17:53:32 -05:00
serde = { version = "1", features = ["derive"] }
2022-12-10 10:34:03 -05:00
tempfile = "3.3.0"
2023-01-21 00:54:54 -05:00
thiserror = "1.0.38"
2022-12-06 17:53:32 -05:00
time = { version = "0.3.17", features = ["formatting", "local-offset"] }
2023-01-21 00:54:54 -05:00
toml = "0.5.11"
2022-12-06 17:53:32 -05:00
twox-hash = "1.6.3"
2023-01-21 00:06:22 -05:00
byteorder = "1.4.3"
# For Linux static binaries, use rustls
[target.'cfg(target_os = "linux")'.dependencies]
2023-01-21 00:54:54 -05:00
reqwest = { version = "0.11.14", default-features = false, features = ["blocking", "json", "rustls"] }
2023-01-21 00:06:22 -05:00
self_update = { version = "0.34.0", default-features = false, features = ["rustls"] }
# For all other platforms, use native TLS
[target.'cfg(not(target_os = "linux"))'.dependencies]
2023-01-21 00:54:54 -05:00
reqwest = "0.11.14"
2023-01-21 00:06:22 -05:00
self_update = "0.34.0"
2022-09-08 17:19:20 -04:00
[target.'cfg(windows)'.dependencies]
2022-12-06 17:53:32 -05:00
path-slash = "0.2.1"
winapi = "0.3.9"
2022-12-10 10:34:03 -05:00
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
2022-12-06 17:53:32 -05:00
[target.'cfg(unix)'.dependencies]
exec = "0.3.1"
2022-09-08 17:19:20 -04:00
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
2022-12-06 17:53:32 -05:00
console_error_panic_hook = "0.1.7"
2022-09-08 17:19:20 -04:00
tracing-wasm = "0.2"
2022-12-06 17:53:32 -05:00
[build-dependencies]
2023-01-21 00:54:54 -05:00
anyhow = "1.0.68"
vergen = { version = "7.5.0", features = ["build", "cargo", "git"], default-features = false }