-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
37 lines (31 loc) · 833 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
[package]
name = "imara-diff"
version = "0.1.7"
edition = "2021"
authors = ["pascalkuthe <[email protected]>"]
rust-version = "1.71"
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",
]
[dependencies]
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher", "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