-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 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
[package]
name = "fastobo-owl"
version = "0.2.1"
authors = ["Martin Larralde <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/fastobo/fastobo-owl"
homepage = "https://github.com/fastobo/fastobo-owl"
description = "OWL language mapping for ontologies in the OBO flat file format 1.4"
keywords = ["obo", "ontology", "obofoundry", "owl", "semantics"]
categories = ["science"]
exclude = ["tests/data/*"]
[badges.travis-ci]
repository = "fastobo/fastobo-owl"
[badges.is-it-maintained-issue-resolution]
repository = "fastobo/fastobo-owl"
[badges.maintenance]
status = "actively-developed"
[dependencies]
curie = "0.1.1"
lazy_static = "1.3.0"
thiserror = "1.0.0"
[dependencies.fastobo]
version = "0.15.0"
default-features = false
features = ["threading"]
[dependencies.horned-owl]
version = "0.11.0"
default-features = false
[dependencies.horned-functional]
version = "0.4.0"
default-features = false
[dev-dependencies]
pretty_assertions = "1.0.0"
[[example]]
name = "fastobo2owl"
path = "examples/fastobo2owl.rs"