-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
59 lines (52 loc) · 1.18 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
[package]
name = "reasonable"
version = "0.2.6"
authors = ["Gabe Fierro <[email protected]>"]
repository = "https://github.com/gtfierro/reasonable"
homepage = "https://brickschema.org/"
license-file = "LICENSE"
readme = "README.md"
description = "An OWL 2 RL reasoner with reasonable performance"
edition = "2018"
[lib]
name = "reasonable"
crate-type = ["lib", "cdylib"]
bench = false
[[bin]]
name = "reasonable"
path = "src/main.rs"
bench = false
[dependencies]
rdf = "0.1.4"
rio_turtle = "0.7.1"
rio_api = "0.7.1"
oxrdf = "0.1.0"
farmhash = "1.1.5"
datafrog = "2.0.1"
roaring = "0.5.2"
itertools = "0.8"
disjoint-sets = "0.4.2"
log = "0.4"
env_logger = "0.7.1"
regex = "1.3.9"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
tinytemplate = "1.2.1"
anyhow = "1.0.60"
pyo3 = { version = "0.17", features = ["extension-module", "abi3-py37"]}
clap = { version = "4.3.10", features = ["derive"] }
[profile.release]
debug = true
[package.metadata.maturin]
name = "reasonable"
[target.x86_64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]
[target.aarch64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]