[[bench]]
harness = false
name = "my_benchmark"
path = "benches/my_benchmark.rs"
[[bin]]
name = "bitcut"
path = "src/main.rs"
required-features = ["cli"]
[dependencies.ahash]
version = "0.8"
[dependencies.anyhow]
optional = true
version = "1.0"
[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[features]
cli = ["clap", "anyhow"]
default = ["cli"]
[lib]
name = "bitcut"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "compression"]
description = "Create and apply binary patches"
edition = "2021"
exclude = ["/.github", "/target"]
keywords = ["binary", "bin", "diff", "patch"]
license = "MIT"
name = "bitcut"
readme = "README.md"
repository = "https://github.com/tochka-public/bitcut"
version = "0.1.1"