objdiff/objdiff-cli/Cargo.toml

32 lines
816 B
TOML
Raw Normal View History

2024-02-28 01:47:51 +00:00
[package]
name = "objdiff-cli"
2024-09-05 05:36:41 +00:00
version = "2.0.0-beta.6"
2024-02-28 01:47:51 +00:00
edition = "2021"
rust-version = "1.70"
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.
"""
publish = false
build = "build.rs"
[dependencies]
2024-09-10 01:26:46 +00:00
anyhow = "1.0"
argp = "0.3"
crossterm = "0.28"
enable-ansi-support = "0.2"
memmap2 = "0.9"
2024-02-28 01:47:51 +00:00
objdiff-core = { path = "../objdiff-core", features = ["all"] }
2024-09-10 01:26:46 +00:00
prost = "0.13"
ratatui = "0.28"
rayon = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
supports-color = "3.0"
time = { version = "0.3", features = ["formatting", "local-offset"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }