-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (35 loc) · 895 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
[package]
name = "gbz-base"
version = "0.1.0"
authors = ["Jouni Siren <jouni.siren@iki.fi>"]
edition = "2021"
description = "GBZ-compatible pangenome graph stored in SQLite."
license = "MIT"
readme = "README.md"
repository = "https://github.com/jltsiren/gbz-base"
[dependencies]
gbwt = { git = "https://github.com/jltsiren/gbwt-rs", branch = "main" }
simple-sds = { git = "https://github.com/jltsiren/simple-sds", branch = "main" }
rusqlite = { version = "0.31", features = ["bundled"] }
getopts = { version = "0.2" }
flate2 = { version = "1.0" }
[[bin]]
name = "gbz2db"
test = false
bench = false
doc = false
[[bin]]
name = "gaf2db"
test = false
bench = false
doc = false
[[bin]]
name = "query"
test = false
bench = false
doc = false
[lib]
# Build a .wasm file of the library in addition to the .rlib to link Rust code
crate-type = ["cdylib", "rlib"]
name = "gbz_base"
path = "src/lib.rs"