-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
42 lines (35 loc) · 896 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
36
37
38
39
40
41
42
[package]
name = "gfa"
version = "0.10.1"
authors = ["[email protected]"]
edition = "2018"
license = "MIT"
description = "Library for working with graphs in the GFA (Graphical Fragment Assembly) format"
repository = "https://github.com/chfi/rs-gfa"
readme = "readme.md"
keywords = ["bioinformatics", "parser", "graph"]
categories = ["science"]
[features]
serde1 = ["serde", "serde_json", "bstr/serde1"]
[dependencies]
lazy_static = "1.4.0"
regex = "1.5.5"
nom = "5"
bytemuck = { version = "1.4", features = ["derive"] }
fnv = "1.0"
serde = { version = "1.0", features = ["derive"], optional = true}
serde_json = { version = "1.0", optional = true }
anyhow = "1.0"
memmap = "0.7"
[dependencies.bstr]
version = "0.2"
default-features = false
features = ["std"]
[dev-dependencies]
criterion = "0.3"
tempfile = "3.3.0"
[lib]
bench = false
[[bench]]
name = "parsing_benchmark"
harness = false