-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 901 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
[package]
name = "gxf2bed"
version = "0.2.4"
authors = ["alejandrogzi <[email protected]>"]
edition = "2021"
license = "MIT"
description = "fastest GTF/GFF-to-BED converter chilling around"
homepage = "https://github.com/alejandrogzi/gxf2bed"
repository = "https://github.com/alejandrogzi/gxf2bed"
readme = "README.md"
keywords = ["bed", "gtf", "gff", "cli", "convert"]
categories = ["command-line-utilities", "science"]
default-run = "gxf2bed"
[dependencies]
thiserror = "1.0"
rayon = "1.8.0"
num_cpus = "1.16.0"
clap = { version = "4.0", features = ["derive"] }
libc = "0.2.151"
log = "0.4.14"
simple_logger = "4.0.0"
indoc = "2.0"
colored = "2.0.0"
hashbrown = { version = ">0.12", features = ["rayon"] }
flate2 = "1.0.20"
[profile.release]
lto = true
[lib]
name = "gxf2bed"
path = "src/lib.rs"
[[bin]]
name = "gxf2bed"
path = "src/main.rs"
[[bin]]
name = "bench"
path = "bench/bench.rs"