mirror of https://github.com/encounter/objdiff.git
34 lines
832 B
TOML
34 lines
832 B
TOML
[package]
|
|
name = "objdiff-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme = "../README.md"
|
|
description = """
|
|
A local diffing tool for decompilation projects.
|
|
"""
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
argp = "0.3"
|
|
crossterm = "0.28"
|
|
enable-ansi-support = "0.2"
|
|
memmap2 = "0.9"
|
|
objdiff-core = { path = "../objdiff-core", features = ["all"] }
|
|
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"] }
|
|
|
|
[target.'cfg(target_env = "musl")'.dependencies]
|
|
mimalloc = "0.1"
|