blob: 6b398dcaf0d7641d8e981141e8007620bae5e608 (
plain)
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
|
# 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 = "prettydiff"
version = "0.6.4"
authors = ["Roman Koblov <penpen938@me.com>"]
description = "Side-by-side diff for two files"
homepage = "https://github.com/romankoblov/prettydiff"
readme = "README.md"
keywords = [
"diff",
"text",
"compare",
"changes",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/romankoblov/prettydiff"
[[bin]]
name = "prettydiff"
required-features = ["cli"]
[dependencies.ansi_term]
version = "0.12"
[dependencies.pad]
version = "0.1.6"
[dependencies.prettytable-rs]
version = "0.10.0"
optional = true
[dependencies.structopt]
version = "0.3"
optional = true
[features]
cli = [
"prettytable-rs",
"structopt",
]
default = ["cli"]
|