-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (48 loc) · 925 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[profile.release]
opt-level = 3
debug = true
lto = "thin"
[workspace]
resolver = "2"
members = [
"rusty-x86",
"rusty-x86_derive",
"core-mem",
"core-memmgr",
"core-heap",
"core-abi",
"core-str",
"core-console",
"core-handletable",
"core-message-queue",
"core-windows",
"core-gfx",
"core-fs",
"core-time",
"win32",
"win32-impl",
"win32-heapmgr",
"win32-virtmem",
"win32-module-table",
"win32-kobj",
"win32-io",
"win32-wobj",
"win32-atoms",
"win32-windows",
"win32-message-queue",
"win32-ddraw",
"win32-fs",
"win32-time",
"win32-error",
"win32-bindgen/bindgen",
"win32-bindgen/bindgenlib",
"win32-bindgen/metadata",
"win32-bindgen/tokens",
"test_fixture",
"test_fixture_recomp",
"rusty_x86_runtime",
"recompiler",
"recomputil",
"memory-image",
"msvc-builder",
]