-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
68 lines (62 loc) · 1.57 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
62
63
64
65
66
67
68
[package]
name = "sketchlib"
version = "0.1.0"
authors = [
"John Lees <jlees@ebi.ac.uk>",
"Nicholas Croucher <n.croucher@imperial.ac.uk>"
]
edition = "2021"
description = "Genome and amino-acid sketching"
repository = "https://github.com/bacpop/sketchlib.rust"
homepage = "https://bacpop.org/software/"
license = "Apache-2.0"
readme = "README.md"
include = [
"/Cargo.toml",
"/LICENSE",
"/NOTICE",
"/src",
"/python_mini3di",
"/tests"
]
keywords = ["bioinformatics", "genomics", "sequencing", "k-mer", "sketch"]
categories = ["command-line-utilities", "science"]
[lib]
crate-type = ["cdylib", "lib"]
[features]
3di = ["dep:pyo3", "dep:pyo3-build-config"]
[dependencies]
# data structures
hashbrown = { version = "0.14", features = ["serde"] }
ahash = ">=0.8.7"
# ordered-float = "4.2"
# save/load
needletail = { version = "0.5", features = ["compression"] }
serde = { version = "1.0", features = ["derive"] }
ciborium = "0.2"
snap = "1.1"
memmap2 = "0.9"
arrayref = "0.3"
# ffi
pyo3 = { version = "0.21", features = ["auto-initialize"], optional = true }
# logging
log = "0.4"
simple_logger = { version = "4", features = ["stderr"] }
indicatif = { version = "0.17", features = ["rayon", "improved_unicode"]}
# cli
clap = { version = "4.5", features = ["derive"] }
regex = "1.10"
anyhow = "1.0"
# parallelisation
rayon = "1.8"
num_cpus = "1.0"
[build-dependencies]
pyo3-build-config = {version = "0.22", optional = true}
[dev-dependencies]
# testing
snapbox = "0.4.3"
predicates = "2.1.5"
assert_fs = "1.0.10"
pretty_assertions = "1.3.0"
[profile.release]
debug = true