-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (32 loc) · 875 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
28
29
30
31
32
33
34
35
[package]
name = "guide-counter"
version = "0.1.3"
edition = "2021"
authors = ["Tim Fennell"]
license = "MIT"
repository = "https://github.com/fulcrumgenomics/guide-counter"
homepage = "https://github.com/fulcrumgenomics/guide-counter"
description = "Fast and accurate guide counting for CRISPR screens."
readme = "README.md"
categories = ["science"]
keywords = ["bioinformatics", "genomic", "crispr"]
[profile.release]
lto = "fat"
codegen-units = 1
[dependencies]
ahash = "0.7.6"
anyhow = "1.0.48"
clap = { version = "3.0.0-rc.9", features = ["derive"] }
csv = "1.1.5"
enum_dispatch = "0.3.7"
env_logger = "0.8.2"
fastq = "0.6.0"
fgoxide = "0.1.3"
flate2 = "1.0.22"
itertools = "0.10.1"
log = "0.4.14"
mimalloc = { version = "0.1.17", default-features = false }
regex = "1.5.4"
serde = { version = "1.0.123", features = ["derive"] }
[dev-dependencies]
tempfile = "3.2.0"