-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 750 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 750 Bytes
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
[package]
name = "hpo"
version = "0.12.0"
edition = "2021"
authors = ["Jonas Marcello <jonas.marcello@esbme.com>"]
description = "Human Phenotype Ontology Similarity"
readme = "README.md"
homepage = "https://github.com/anergictcell/hpo"
repository = "https://github.com/anergictcell/hpo"
license = "MIT"
keywords = ["hpo", "phenomics", "ontology", "omim", "similarity"]
categories = ["science", "data-structures", "parser-implementations"]
[dependencies]
thiserror = "2"
tracing = "0.1"
smallvec = "1"
[dev-dependencies]
rayon = "1.6.0"
simple_logger = "4.0.0"
criterion = "0.4"
[[bench]]
name = "similarity"
harness = false
[[bench]]
name = "ontology"
harness = false
[[bench]]
name = "ancestors"
harness = false
[profile.release]
lto = true