-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (51 loc) · 1.51 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 = "meamer-rs"
version = "0.2.0"
edition = "2021"
[profile.release]
opt-level = 3
[workspace]
members = ["rml-interpreter", "shexml-interpreter", "operator", "vocab", "plangenerator", "translator"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
anyhow = "1.0.71"
lazy_static = "1.4.0"
petgraph = { version = "0.6.5", features = ["serde-1"] }
regex = "1.8.4"
serde = {version="1.0.164", features= ["derive", "rc"]}
serde_json = "1.0.99"
thiserror = "1.0.44"
log4rs = "1.2.0"
log = "0.4.21"
either = "1.10.0"
uuid = { version= "1.3.0", features=["v4"]}
clap = {version= "4.3.12", features=["derive"]}
[dependencies]
anyhow.workspace = true
lazy_static.workspace = true
petgraph.workspace = true
regex.workspace = true
serde_json.workspace = true
thiserror.workspace = true
clap.workspace = true
rml-interpreter = {path = "./rml-interpreter/"}
shexml-interpreter = {path = "./shexml-interpreter/"}
operator = {path = "./operator/"}
plangenerator = {path = "./plangenerator/"}
translator = {path = "./translator/"}
csv = "1.2.2"
urlencoding = "2.1.2"
walkdir = "2.4.0"
colored = "2.0.4"
log4rs.workspace = true
log.workspace = true
jni = { version = "0.21.1" , optional = true}
neon = { version = "1.0.0", optional = true }
pyo3 = { version = "0.21.2", features = ["extension-module"], optional = true }
[lib]
name = "ltranslator"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "translator"
path = "src/bin/translator/main.rs"