objdiff/Cargo.toml

86 lines
2.3 KiB
TOML
Raw Normal View History

2022-09-08 21:19:20 +00:00
[package]
name = "objdiff"
version = "0.4.0"
2022-09-08 21:19:20 +00:00
edition = "2021"
rust-version = "1.65"
2022-09-08 21:19:20 +00:00
authors = ["Luke Street <luke@street.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/encounter/objdiff"
readme = "README.md"
description = """
A local diffing tool for decompilation projects.
2022-09-08 21:19:20 +00:00
"""
publish = false
2023-05-11 06:47:57 +00:00
build = "build.rs"
[profile.release]
lto = "thin"
strip = "debuginfo"
2022-09-08 21:19:20 +00:00
2023-01-21 17:56:29 +00:00
[features]
default = []
wgpu = ["eframe/wgpu"]
2022-09-08 21:19:20 +00:00
[dependencies]
2023-05-11 06:47:57 +00:00
anyhow = "1.0.71"
byteorder = "1.4.3"
2023-05-11 06:47:57 +00:00
bytes = "1.4.0"
cfg-if = "1.0.0"
2023-07-06 14:37:57 +00:00
const_format = "0.2.31"
2023-02-06 22:40:29 +00:00
cwdemangle = "0.1.5"
dirs = "5.0.1"
2023-07-06 14:37:57 +00:00
eframe = { version = "0.22.0", features = ["persistence"] }
egui = "0.22.0"
egui_extras = "0.22.0"
2022-09-08 21:19:20 +00:00
flagset = "0.4.3"
globset = { version = "0.4.13", features = ["serde1"] }
2023-07-06 14:37:57 +00:00
log = "0.4.19"
memmap2 = "0.7.1"
notify = "6.0.1"
2023-05-11 06:47:57 +00:00
object = { version = "0.31.1", features = ["read_core", "std", "elf"], default-features = false }
2023-07-06 14:37:57 +00:00
png = "0.17.9"
2023-01-21 05:54:54 +00:00
ppc750cl = { git = "https://github.com/terorie/ppc750cl", rev = "9ae36eef34aa6d74e00972c7671f547a2acfd0aa" }
2023-07-06 14:37:57 +00:00
rabbitizer = "1.7.4"
rfd = { version = "0.11.4" } #, default-features = false, features = ['xdg-portal']
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.104"
serde_yaml = "0.9.25"
2023-07-06 14:37:57 +00:00
tempfile = "3.6.0"
thiserror = "1.0.41"
time = { version = "0.3.22", features = ["formatting", "local-offset"] }
toml = "0.7.6"
twox-hash = "1.6.3"
2023-01-21 05:06:22 +00:00
# For Linux static binaries, use rustls
[target.'cfg(target_os = "linux")'.dependencies]
2023-07-06 14:37:57 +00:00
reqwest = { version = "0.11.18", default-features = false, features = ["blocking", "json", "rustls"] }
self_update = { version = "0.37.0", default-features = false, features = ["rustls"] }
2023-01-21 05:06:22 +00:00
# For all other platforms, use native TLS
[target.'cfg(not(target_os = "linux"))'.dependencies]
2023-07-06 14:37:57 +00:00
reqwest = "0.11.18"
self_update = "0.37.0"
2022-09-08 21:19:20 +00:00
[target.'cfg(windows)'.dependencies]
path-slash = "0.2.1"
winapi = "0.3.9"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[target.'cfg(unix)'.dependencies]
exec = "0.3.1"
2022-09-08 21:19:20 +00:00
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
2022-09-08 21:19:20 +00:00
tracing-wasm = "0.2"
[build-dependencies]
2023-05-11 06:47:57 +00:00
anyhow = "1.0.71"
2023-07-06 14:37:57 +00:00
vergen = { version = "8.2.4", features = ["build", "cargo", "git", "gitcl"] }