generated from Serial-ATA/sscrt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 778 Bytes
/
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
[workspace]
resolver = "2"
members = [
"classfile",
"instructions",
"runtime",
"common",
"jimage",
"jmod",
"versioning",
"platform",
"symbols",
"jni",
"jni/sys",
]
exclude = ["tools", "generators"]
[workspace.dependencies]
classfile = { path = "classfile" }
common = { path = "common" }
instructions = { path = "instructions" }
jni = { path = "jni" }
jni_sys = { path = "jni/sys" }
symbols = { path = "symbols" }
byteorder = "1.5.0"
byte-slice-cast = "1.2.2"
cesu8 = "1.1.0"
cfg-if = "1.0.0"
const_format = "0.2.33"
libc = "0.2"
libloading = "0.8.5"
tracing = "0.1.41"
paste = "1.0.15"
zip = { version = "2.2.1", default-features = false }
# Nested workspace members
tools = { path = "tools" }
generators = { path = "generators" }