-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (80 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "Xila"
version = "0.1.0"
authors = ["Alix ANNERAUD <[email protected]>"]
edition = "2021"
resolver = "2"
rust-version = "1.82.0"
[dependencies]
# - WASM
WASM_bindings = { path = "Modules/Bindings/WASM", optional = true }
# - Host
LittleFS = { path = "Modules/LittleFS", optional = true }
Virtual_machine = { path = "Modules/Virtual_machine", optional = true }
Virtual_file_system = { path = "Modules/Virtual_file_system", optional = true }
Graphics = { path = "Modules/Graphics", optional = true }
Time = { path = "Modules/Time", optional = true }
Task = { path = "Modules/Task", optional = true }
Users = { path = "Modules/Users", optional = true }
Drivers = { path = "Modules/Drivers", optional = true }
Memory = { path = "Modules/Memory", optional = true }
WASM = { path = "Modules/Executables/WASM", optional = true }
Command_line_shell = { path = "Modules/Executables/Shell/Command_line", optional = true }
Executable = { path = "Modules/Executable", optional = true }
File_system = { path = "Modules/File_system", optional = true }
Host_bindings = { path = "Modules/Bindings/Host", optional = true }
[build-dependencies]
Target = { path = "Modules/Target", optional = true }
[features]
default = []
Host = [
"dep:LittleFS",
"dep:Virtual_machine",
"dep:Virtual_file_system",
"dep:Graphics",
"dep:Task",
"dep:Time",
"dep:Users",
"dep:Drivers",
"dep:Memory",
"dep:WASM",
"dep:Command_line_shell",
"dep:Target",
"dep:Executable",
"dep:File_system",
"dep:Host_bindings",
]
WASM = ["dep:WASM_bindings"]
[[example]]
name = "Native"
path = "Examples/Native.rs"
required-features = ["Host"]
[workspace]
members = [
"Modules/File_system",
"Modules/Virtual_machine",
"Modules/Graphics",
"Modules/Task",
"Modules/Users",
"Modules/Drivers",
"Modules/Peripherals",
"Modules/Memory",
"Modules/Time",
"Modules/ABI",
"Modules/Virtual_file_system",
"Modules/LittleFS",
"Modules/Target",
"Modules/Bindings/Utilities",
"Modules/Bindings/Host",
"Modules/Bindings/WASM",
"Modules/Executables/Shell/Command_line",
"Modules/Executable",
"Modules/Executables/WASM",
"Modules/Executables/Shell/Graphical",
"Modules/Executables/Terminal",
]
exclude = [
"Modules/Virtual_machine/Tests/WASM_test",
"Modules/Bindings/Tests/WASM_test",
"Build_tool",
]