forked from pascalkuthe/imara-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 950 Bytes
/
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
[package]
name = "imara-diff"
version = "0.1.5"
edition = "2021"
authors = ["pascalkuthe <[email protected]>"]
rust-version = "1.61"
license = "Apache-2.0"
description = "Minimal terminfo libary."
repository = "https://github.com/pascalkuthe/imara-diff"
keywords = ["diff", "difference", "myers", "compare", "changes"]
readme = "README.md"
exclude = [
"tests",
"bench_data",
"plt.py",
]
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = "0.8.0"
hashbrown = { version = "0.13", default-features = false, features = ["raw", "inline-more"] }
[features]
default = ["unified_diff"]
unified_diff = []
[dev-dependencies]
criterion = "0.4.0"
expect-test = "1.4.0"
gix = "0.44"
similar = { version = "2.2.0", features = ["bytes"] }
[profile.release]
debug = true
[[bench]]
name = "git_repo"
harness = false