-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 684 Bytes
/
Cargo.toml
File metadata and controls
33 lines (26 loc) · 684 Bytes
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
[package]
name = "seqdiff"
version = "0.3.0"
authors = ["Yohei Tamura <tamuhey@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Diff between two sequences"
homepage = "https://github.com/tamuhey/seqdiff"
repository = "https://github.com/tamuhey/seqdiff"
keywords = ["algorithm", "diff", "Vec"]
readme = "README.md"
documentation = "https://docs.rs/seqdiff"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
quickcheck_macros = "0.9.1"
quickcheck = "0.9.2"
rstest = "0.6.4"
criterion = "0.3"
[[bench]]
name = "diff"
harness = false
[lib]
bench = false
[profile.bench]
debug = 2