forked from mitsuhiko/similar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (58 loc) · 1.59 KB
/
Cargo.toml
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
[package]
name = "similar"
version = "2.2.0"
authors = ["Armin Ronacher <[email protected]>", "Pierre-Étienne Meunier <[email protected]>", "Brandon Williams <[email protected]>"]
edition = "2018"
rust-version = "1.41"
license = "Apache-2.0"
description = "A diff library for Rust"
repository = "https://github.com/mitsuhiko/similar"
keywords = ["diff", "difference", "patience", "compare", "changes"]
readme = "README.md"
exclude = [
"assets/*"
]
[package.metadata.docs.rs]
all-features = true
[features]
default = ["text"]
text = []
inline = ["text"]
# this annoyingly currently also turns on bstr and not just bstr/unicode
# unclear if this is fixable
unicode = ["text", "unicode-segmentation", "bstr/unicode"]
bytes = ["bstr", "text"]
[dev-dependencies]
insta = "1.10.0"
console = "0.15.0"
serde_json = "1.0.68"
[dependencies]
unicode-segmentation = { version = "1.7.1", optional = true }
bstr = { version = "0.2.14", optional = true, default-features = false }
serde = { version = "1.0.130", optional = true, features = ["derive"] }
[[example]]
name = "patience"
required-features = ["text", "inline"]
[[example]]
name = "terminal"
required-features = ["text"]
[[example]]
name = "terminal-inline"
required-features = ["text", "inline", "bytes"]
[[example]]
name = "original-slices"
required-features = ["text"]
[[example]]
name = "udiff"
required-features = ["text", "bytes"]
[[example]]
name = "close-matches"
required-features = ["text"]
[[example]]
name = "large"
required-features = ["text"]
[[example]]
name = "serde"
required-features = ["text", "serde"]
[profile.release]
debug = true