-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
54 lines (52 loc) · 1.11 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
[workspace]
members = [
"rust-core",
"rust-orchestration",
"rust-common",
"rust-bridge-matlab-simulink",
"rust-bridge-java",
"rust-bridge-minizinc"
# "rust-bridge-ortools"
]
description = "IDeSyDe Rust suite"
resolver = "2"
[workspace.dependencies]
env_logger = "0.11.2"
base64 = "0.22.0"
ciborium = "0.2.1"
clap = { version = "4.2.1", features = ["derive"] }
cxx = "1.0"
cxx-build = "1.0"
autocxx = "0.26.0"
autocxx-build = "0.26.0"
derive_builder = "0.20.0"
downcast-rs = "1.2.0"
jni = { version = "0.21.1", features = ["invocation"] }
log = "0.4.17"
md5 = "0.7.0"
num = "0.4.1"
petgraph = "0.6.3"
prost = "0.12"
prost-build = "0.12"
quote = "1.0.27"
rayon = "1.7"
reqwest = { version = "0.11.18", default-features = false, features = [
"blocking",
"rustls-tls",
"json",
"multipart",
] }
rmp-serde = "1.1"
schemars = "0.8.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.8"
sha3 = "0.10.6"
syn = "2.0.15"
tungstenite = { version = "0.21.0", features = ["rustls"] }
url = "2.4.1"
zip = "0.6.6"
[workspace.package]
version = "0.8.3"
authors = ["Rodolfo Jordao"]
edition = "2021"