-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
61 lines (51 loc) · 1.34 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "biodiff"
description = "Compare binary files using sequence alignment"
repository = "https://github.com/8051Enthusiast/biodiff"
version = "1.2.1"
authors = ["8051Enthusiast <8051Enthusiast@protonmail.com>"]
edition = "2021"
license = "MIT"
default-run = "biodiff"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"hexagex",
"biodiff-wfa2-sys", "biodiff-align",
]
[features]
default = ["bundle-wfa2"]
bundle-wfa2 = ["biodiff-align/bundle-wfa2", "wfa2"]
wfa2 = ["biodiff-align/wfa2"]
[dev-dependencies]
trycmd = "0.15.1"
[dependencies]
crossterm = "0.25.0"
cursive_buffered_backend = "0.6.1"
unicode-width = "0.1.11"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
dirs = "5.0.1"
regex = "1.10.4"
hexagex = { path = "hexagex", version = "0.2.3" }
realfft = "3.3.0"
[dependencies.clap]
version = "4.5.4"
default-features = false
features = ["color", "help", "usage", "std", "derive"]
[dependencies.biodiff-align]
path = "biodiff-align"
version = "1.2.1-preview"
default-features = false
features = ["bundle-wfa2", "bio"]
[dependencies.cursive]
version = "0.20.0"
default-features = false
features = ["crossterm-backend"]
[profile.dev.package.bio]
opt-level = 3
[profile.dist]
inherits = "release"
lto = true
strip = "symbols"
codegen-units = 1