-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
41 lines (34 loc) · 896 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
[package]
name = "imara-diff"
version = "0.1.7"
edition = "2021"
authors = ["pascalkuthe <[email protected]>"]
rust-version = "1.61"
license = "Apache-2.0"
description = "A high performance library for computing diffs."
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" }
[dependencies]
ahash = "0.8.0"
hashbrown = { version = "0.14", default-features = false, features = ["raw", "inline-more"] }
[features]
default = ["unified_diff"]
unified_diff = []
[dev-dependencies]
# criterion = "0.4.0"
expect-test = "1.4.0"
# git-repository = "0.25.0"
# similar = { version = "2.2.0", features = ["bytes"] }
[profile.release]
debug = true
# [[bench]]
# name = "git_repo"
# harness = false