-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
27 lines (25 loc) · 856 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
[package]
name = "squab"
version = "0.1.0"
authors = ["Michael Macias <[email protected]>"]
license = "MIT"
edition = "2021"
rust-version = "1.70.0"
publish = false
[profile.release]
lto = "fat"
codegen-units = 1
[dependencies]
anyhow = "1.0.32"
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
clap = { version = "4.0.10", features = ["derive", "string"] }
crossbeam-channel = "0.5.6"
flate2 = "1.0.14"
git-testament = "0.2.0"
interval-tree = { git = "https://github.com/zaeleus/interval-tree.git", rev = "e303d7254d53de5c418d6079d4b66c30c10958d4" }
mimalloc = { version = "0.1.26", default-features = false }
noodles = { version = "0.74.0", features = ["bam", "bgzf", "core", "gff", "sam"] }
noodles-bgzf = { version = "0.30.0", features = ["libdeflate"] }
thiserror = "1.0.40"
tracing = "0.1.25"
tracing-subscriber = "0.3.3"