-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (46 loc) · 1.3 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
[package]
name = "bedder"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "bedder"
path = "src/lib.rs"
[[bin]]
name = "bedder"
path = "src/main.rs"
[dependencies]
rand = "0.8.5"
smartstring = { version = "1.0.1", optional = true }
smol_str = { version = "0.2.0", optional = true }
compact_str = { version = "0.7.0", optional = true }
kstring = { version = "2.0.0", optional = true }
noodles = { version = "0.52.0" }
flate2 = "1.0.26"
clap = { version = "4.2.7", features = ['derive'] }
env_logger = "0.10.0"
log = "0.4.19"
linear-map = "1.2.0"
hashbrown = "0.14.0"
xvcf = { version = "0.1.4", git = "https://github.com/brentp/xvcf-rs" }
[features]
default = ["bed", "vcf", "bcf", "csi", "core", "bam", "sam", "bgzf"]
bam = ["noodles/bam"]
bed = ["noodles/bed"]
bgzf = ["noodles/bgzf"]
#cram = ["noodles/cram"]
sam = ["noodles/sam"]
vcf = ["noodles/vcf"]
csi = ["noodles/csi"]
core = ["noodles/core"]
bcf = ["noodles/bcf"]
# allow a Box<dyn Positioned> in the enum to support user-specified types.
dyn_positioned = []
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
clap = { version = "4.2.7", features = ["derive"] }
[[bench]]
name = "random_intervals"
harness = false
[profile.release]
lto = true