File: Cargo.toml

package info (click to toggle)
rust-imara-diff 0.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: makefile: 2
file content (61 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download
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
# 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 = "2021"
rust-version = "1.71"
name = "imara-diff"
version = "0.1.8"
authors = ["pascalkuthe <pascalkuthe@pm.me>"]
build = false
exclude = [
    "tests",
    "bench_data",
    "plt.py",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high performance library for computing diffs."
readme = "README.md"
keywords = [
    "diff",
    "difference",
    "myers",
    "compare",
    "changes",
]
license = "Apache-2.0"
repository = "https://github.com/pascalkuthe/imara-diff"

[profile.release]
debug = 2

[lib]
name = "imara_diff"
path = "src/lib.rs"

[dependencies.hashbrown]
version = ">= 0.15, <0.17"
features = [
    "default-hasher",
    "inline-more",
]
default-features = false

[dev-dependencies.expect-test]
version = "1.4.0"

[features]
default = ["unified_diff"]
unified_diff = []