-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
54 lines (44 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
51
52
53
54
[package]
name = "horned-owl"
version = "0.14.0"
authors = ["Phillip Lord <phillip.lord@russet.org.uk>"]
description = "Library for OWL Ontologies"
repository = "https://github.com/phillord/horned-owl"
keywords = ["xml", "ontology", "OWL", "command"]
categories = ["command-line-utilities", "parsing",
"rendering", "science", "data-structures"]
license = "LGPL-3.0"
edition = "2018"
[dependencies]
curie = "0.1.1"
enum_meta = "0.6.0"
thiserror = "1.0"
lazy_static="1.4.0"
log = {version="0.4.8"}
quick-xml={version="0.26.0"}
indexmap={workspace=true}
pretty_rdf={workspace=true}
rio_api={workspace=true}
rio_xml={workspace=true}
ureq={version="2.1.1", optional=true}
[workspace]
members=["horned-bin"]
[workspace.dependencies]
indexmap="1.0.2"
pretty_rdf="0.2.0"
rio_api="0.7.1"
rio_xml="0.7.3"
[features]
remote = ["ureq"]
[dev-dependencies]
horned-owl = {path=".", features = ["remote"]}
bencher = "0.1.4"
env_logger = "0.9.0"
mktemp = "0.4.1"
pretty_assertions = "1.0.0"
slurp = "1.0.1"
[profile.release]
debug = true
[[bench]]
name = "horned"
harness = false