1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "riffdiff"
version = "3.6.0"
authors = ["Johan Walles <johan.walles@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A diff filter highlighting changed line parts"
homepage = "https://github.com/walles/riff/#readme"
documentation = "https://github.com/walles/riff/#readme"
readme = "README.md"
keywords = [
"diff",
"git",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/walles/riff/"
[[bin]]
name = "riff"
path = "src/main.rs"
[dependencies.backtrace]
version = "0.3"
[dependencies.bytecount]
version = "0.6.2"
[dependencies.clap]
version = "4.5.26"
features = ["derive"]
[dependencies.itertools]
version = "0.13.0"
[dependencies.log]
version = "0.4"
features = ["std"]
[dependencies.num_cpus]
version = "1.13.0"
[dependencies.once_cell]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.rustversion]
version = "1.0"
[dependencies.similar]
version = "2.6.0"
[dependencies.threadpool]
version = "1.8.1"
[dependencies.url]
version = "2"
[dev-dependencies.base64]
version = "0.22.1"
[dev-dependencies.pretty_assertions]
version = "0.6.1"
[dev-dependencies.tempfile]
version = "3.4.0"
[profile.release]
lto = "thin"
debug = 1
[profile.release.package."*"]
debug = 0
|