-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (50 loc) · 1.1 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
[workspace]
resolver = "2"
members = [
"extra\\*"
]
[workspace.dependencies]
base64 = "0.22.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
clap = { version = "4.3.21", features = ["derive"] }
windows-sys = { version = "0.48.0", features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Console",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_Security"
]}
[package]
name = "rev-toolkit"
version = "1.0.0"
edition = "2021"
[dependencies]
clap.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
windows-sys.workspace = true
[lib]
crate-type = ["rlib"]
[profile.dev]
lto = false
incremental = true
[profile.release]
lto = true
strip = true
[[example]]
name = "wesnoth-internal"
crate-type = ["cdylib"]
[[example]]
name = "ac-external"
crate-type = ["bin"]
[[example]]
name = "cod4-internal"
crate-type = ["cdylib"]
[[example]]
name = "rf-internal"
crate-type = ["cdylib"]