-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 932 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
43
44
[package]
name = "legoseq"
authors = ["Pidong Li<lipidong@126.com>"]
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "legoseq"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "legoseq"
path = "src/bin/main.rs"
[dependencies]
bio = '=1.1.0'
bio-types = "*"
clap = {version = "^4.1", features = ["derive"]}
rayon = "1.2"
tracing = "*"
# terminal_size = "*"
tracing-subscriber = "0.3.11"
rand="*"
getrandom = { version = "0.2", features = ["js"] }
crossbeam-channel = ">=0.5"
flate2 = ">=1.0"
once_cell = "*"
anyhow = "*"
serde = { version = "1", features = ["derive"] }
csv = "1.1"
minijinja = "*"
serde_json = "*"
ant = {git="https://github.com/dongspy/ant.git"}
#ant = {path="../ant"}
dashmap = "5.5.3"
# wasm
wasm-bindgen = "0.2"
# rust-htslib="0.40.2"
wasm-bindgen-test = "0.3.37"
serde-wasm-bindgen = "0.4"