mirror of
https://github.com/encounter/bdiff.git
synced 2026-07-09 18:19:34 -07:00
38 lines
793 B
TOML
38 lines
793 B
TOML
[package]
|
|
name = "bdiff"
|
|
version = "0.7.0"
|
|
edition = "2021"
|
|
authors = ["Ethan Roseman <ethteck@gmail.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/ethteck/bdiff"
|
|
readme = "README.md"
|
|
description = """
|
|
A(nother) binary diffing tool
|
|
"""
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
argh = "0.1.12"
|
|
dtoa = "1.0.9"
|
|
eframe = { version = "0.23.0", features = ["persistence"] }
|
|
egui-modal = "0.2.5"
|
|
egui-phosphor = "0.3.0"
|
|
encoding_rs = "0.8.33"
|
|
iset = "0.2.2"
|
|
log = "0.4.20"
|
|
mapfile_parser = "2.3.0"
|
|
notify = "6.1.1"
|
|
parse_int = "0.6.0"
|
|
rfd = "0.12.1"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1.12"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.75"
|
|
vergen = { version = "8.2.6", features = ["build", "cargo", "git", "gitcl"] }
|