mirror of
https://github.com/NohamR/macho-diff.git
synced 2026-08-26 02:39:45 +00:00
Bumps [lief](https://github.com/lief-project/LIEF) from 0.17.6 to 1.0.0. - [Release notes](https://github.com/lief-project/LIEF/releases) - [Commits](https://github.com/lief-project/LIEF/compare/0.17.6...1.0.0) --- updated-dependencies: - dependency-name: lief dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
506 B
TOML
27 lines
506 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "macho-diff"
|
|
version = "0.1.0"
|
|
description = "A command-line tool for visual instruction-level differences between Mach-O binaries."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"capstone>=5.0.9",
|
|
"lief>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
macho-diff = "macho_diff.cli:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["macho_diff"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pylint>=4.0.6",
|
|
"ruff>=0.15.20",
|
|
]
|