-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
50 lines (46 loc) · 1.06 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
[package]
name = "hgvs"
version = "0.17.4"
edition = "2021"
authors = ["Manuel Holtgrewe <manuel.holtgrewe@bih-charite.de>"]
description = "Port of biocommons/hgvs to Rust"
license = "Apache-2.0"
repository = "https://github.com/varfish-org/hgvs-rs"
readme = "README.md"
rust-version = "1.80.0"
[lib]
name = "hgvs"
path = "src/lib.rs"
[dependencies]
base16ct = "0.2"
bio = "2.0"
chrono = "0.4"
enum-map = "2.4"
flate2 = "1.0"
log = "0.4"
md-5 = "0.10"
nom = "7.1"
postgres = { version = "0.19", features = ["with-chrono-0_4"] }
quick_cache = "0.6"
regex = "1.7"
rustc-hash = "2.0"
seqrepo = { version = "0.10.3", features = ["cached"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
indexmap = { version = "2", features = ["serde"] }
biocommons-bioutils = "0.1.0"
ahash = "0.8.11"
cached = "0.54.0"
[dev-dependencies]
anyhow = "1.0"
criterion = "0.5"
csv = "1.2"
env_logger = "0.11"
insta = { version = "1", features = ["yaml"] }
pretty_assertions = "1.3"
rstest = "0.24"
test-log = "0.2"
[[bench]]
name = "translate_cds"
harness = false