-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (74 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
91 lines (74 loc) · 1.83 KB
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
87
88
89
90
91
[package]
name = "titanium"
version = "1.0.0-alpha.5"
edition = "2021"
[lib]
path = "titanium/src/lib.rs"
#?RESERVED_FOR_TITANIUM_FRAMEWORK_START
#?RESERVED_FOR_TITANIUM_FRAMEWORK_END
[workspace]
members = [
"titanium/assets",
"titanium/common",
"titanium/desktop",
"titanium/macros",
"titanium/utils",
"titanium/web",
#Examples
"examples/desktop_discord",
"examples/desktop_memory",
"examples/desktop_gui",
"examples/web",
]
[dependencies.titaniummacros]
path = "./titanium/macros"
package = "macros"
optional = true
[dependencies.async-std]
features = ["attributes"]
version = "1.12"
optional = true
[dependencies.titaniumutils]
path = "./titanium/utils"
package = "titanium_utils"
default-features = false
features = ["macros"]
[dependencies.titaniumassets]
path = "./titanium/assets"
package = "titanium_assets"
optional = true
[dependencies.titaniumcommon]
path = "./titanium/common"
package = "titanium_common"
optional = true
[dependencies.titaniumdesktop]
path = "./titanium/desktop"
package = "titanium_desktop"
optional = true
[dependencies.titaniumweb]
path = "./titanium/web"
package = "titanium_web"
optional = true
[features]
default = ["basic"]
basic = ["macros", "core"]
core = ["titaniumcommon", "titaniumassets"]
macros = ["titaniummacros", "async-std"]
# Desktop Target
desktop = ["titaniumdesktop"]
desktop-gui = ["desktop", "titaniumdesktop/gui"]
desktop-memory = ["desktop", "titaniumdesktop/memory"]
desktop-discord = ["desktop", "titaniumdesktop/discord"]
desktop-keybinds = ["desktop", "titaniumdesktop/keybinds"]
desktop-full = [
"desktop-gui",
"desktop-memory",
"desktop-discord",
"desktop-keybinds",
"macros"
]
# Web Target
web = ["titaniumweb"]
web-socket = ["web", "titaniumweb/socket"]
web-full = ["web", "web-socket", "titaniumweb/full", "macros"]
#!TITANIUM_OK