objdiff/Cargo.toml

95 lines
2.4 KiB
TOML
Raw Normal View History

2022-09-08 14:19:20 -07:00
[package]
name = "objdiff"
2023-11-21 21:11:33 -08:00
version = "0.6.1"
2022-09-08 14:19:20 -07:00
edition = "2021"
2023-10-05 20:55:01 -07:00
rust-version = "1.70"
2022-09-08 14:19:20 -07: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 14:19:20 -07:00
"""
publish = false
2023-05-10 23:47:57 -07:00
build = "build.rs"
[profile.release-lto]
inherits = "release"
lto = "thin"
strip = "debuginfo"
2022-09-08 14:19:20 -07:00
2023-01-21 09:56:29 -08:00
[features]
default = []
wgpu = ["eframe/wgpu"]
wsl = []
2023-01-21 09:56:29 -08:00
2022-09-08 14:19:20 -07:00
[dependencies]
2023-10-05 20:55:01 -07:00
anyhow = "1.0.75"
byteorder = "1.5.0"
bytes = "1.5.0"
cfg-if = "1.0.0"
2023-11-21 08:57:02 -08:00
const_format = "0.2.32"
cwdemangle = "0.1.6"
dirs = "5.0.1"
2023-12-11 10:36:00 -08:00
eframe = { version = "0.24.1", features = ["persistence"] }
egui = "0.24.1"
egui_extras = "0.24.1"
filetime = "0.2.22"
2023-10-05 20:55:01 -07:00
flagset = "0.4.4"
2023-11-21 20:56:30 -08:00
float-ord = "0.3.2"
2023-12-11 10:36:00 -08:00
font-kit = "0.12.0"
globset = { version = "0.4.14", features = ["serde1"] }
2023-10-05 20:55:01 -07:00
log = "0.4.20"
memmap2 = "0.9.0"
notify = "6.1.1"
object = { version = "0.32.1", features = ["read_core", "std", "elf"], default-features = false }
png = "0.17.10"
pollster = "0.3.0"
ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "4a2bbbc6f84dcb76255ab6f3595a8d4a0ce96618" }
2023-11-21 08:57:02 -08:00
rabbitizer = "1.8.0"
rfd = { version = "0.12.1" } #, default-features = false, features = ['xdg-portal']
2023-10-05 20:55:01 -07:00
ron = "0.8.1"
2023-11-21 08:57:02 -08:00
semver = "1.0.20"
serde = { version = "1", features = ["derive"] }
2023-11-21 08:57:02 -08:00
serde_json = "1.0.108"
serde_yaml = "0.9.27"
similar = "2.3.0"
2023-11-21 08:57:02 -08:00
tempfile = "3.8.1"
thiserror = "1.0.50"
time = { version = "0.3.30", features = ["formatting", "local-offset"] }
toml = "0.8.8"
twox-hash = "1.6.3"
2023-01-20 21:06:22 -08:00
# For Linux static binaries, use rustls
[target.'cfg(target_os = "linux")'.dependencies]
2023-10-05 20:55:01 -07:00
reqwest = { version = "0.11.22", default-features = false, features = ["blocking", "json", "rustls"] }
2023-11-21 08:57:02 -08:00
self_update = { version = "0.39.0", default-features = false, features = ["rustls"] }
2023-01-20 21:06:22 -08:00
# For all other platforms, use native TLS
[target.'cfg(not(target_os = "linux"))'.dependencies]
2023-10-05 20:55:01 -07:00
reqwest = "0.11.22"
2023-11-21 08:57:02 -08:00
self_update = "0.39.0"
2022-09-08 14:19:20 -07: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 14:19:20 -07: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 14:19:20 -07:00
tracing-wasm = "0.2"
[build-dependencies]
2023-10-05 20:55:01 -07:00
anyhow = "1.0.75"
2023-11-21 08:57:02 -08:00
vergen = { version = "8.2.6", features = ["build", "cargo", "git", "gitcl"] }