-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.41 KB
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
51
[package]
name = "ontolius"
version = "0.7.2"
description = "A fast and safe crate for working with biomedical ontologies."
keywords = ["ontology", "bioinformatics", "HPO", "MAxO", "GO"]
edition = "2021"
homepage = "https://github.com/P2GX/ontolius"
repository = "https://github.com/P2GX/ontolius"
readme = "README.md"
license-file = "LICENSE"
authors = ["Daniel Danis <daniel.gordon.danis@protonmail.com>"]
[dependencies]
anyhow = "1.0.86"
curieosa = { version = "0.1.0", optional = true }
graph_builder = { version = "0.3.1", optional = true }
obographs-dev = { version = "0.2.2", optional = true }
pyo3 = { version = "0.24.1", optional = true, features = ["abi3-py310"] }
# Ontolius will not compile without pinning `rayon=1.10.0`
# because there is an error upstream in the `graph_builder` crate.
# The dependency restriction can be removed after the error is fixed.
# https://github.com/neo4j-labs/graph/issues/138
rayon = { version = "=1.10.0", optional = true }
serde = { version = "1.0.228", optional = true }
[dev-dependencies]
flate2 = "1.0.30"
criterion = "0.5.1"
serde = "1.0.228"
serde_test = "1.0.177"
[features]
default = ["obographs", "csr"]
csr = ["dep:graph_builder", "dep:rayon"]
obographs = ["dep:obographs-dev", "dep:curieosa"]
pyo3 = ["dep:pyo3"]
serde = ["dep:serde"]
[[bench]]
name = "hierarchy_io"
harness = false
[[bench]]
name = "hierarchy_traversals"
harness = false
[[bench]]
name = "term_ids"
harness = false