-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
62 lines (50 loc) · 1.23 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
55
56
57
58
59
60
61
[package]
name = "horned-owl"
version = "1.0.1-dev"
authors = ["Phillip Lord <[email protected]>"]
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"}
oxiri="0.2.2"
quick-xml={version="0.31.0"}
indexmap={workspace=true}
pest = "2.7.8"
pest_derive = "2.7.8"
pretty_rdf={workspace=true}
rio_api={workspace=true}
rio_xml={workspace=true}
ureq={version="2.1.1", optional=true}
[workspace]
members=["horned-bin"]
default-members=[".", "horned-bin"]
[workspace.dependencies]
indexmap="1.0.2"
##pretty_rdf={path="./pretty_rdf"}
pretty_rdf="0.8.0"
rio_api="0.8.4"
rio_xml="0.8.4"
[features]
default = ["remote"]
remote = ["ureq"]
[dev-dependencies]
horned-owl = {path=".", features = ["remote"]}
criterion = "0.5.1"
mktemp = "0.5.1"
pretty_assertions = "1.0.0"
slurp = "1.0.1"
test-generator = { version = "^0.3" }
[profile.release]
debug = true
[[bench]]
name = "horned"
harness = false