-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (73 loc) · 2 KB
/
Copy pathCargo.toml
File metadata and controls
79 lines (73 loc) · 2 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
[workspace]
resolver = "3"
members = ["crates/*", "xtask", "benches"]
[workspace.package]
version = "1.15.4"
edition = "2024"
license = "MIT"
repository = "https://github.com/dsh0416/godot-cef"
[workspace.dependencies]
godot = { version = "0.5.5", features = ["api-4-5", "experimental-threads"] }
cef = { version = "152.0.0", features = ["sandbox", "accelerated_osr"] }
cef-dll-sys = { version = "152.0.0", features = ["sandbox"] }
process_path = "0.1.4"
plist = { version = "1.10.1" }
serde = { version = "1.0.229", features = ["derive"] }
libloading = { version = "0.9.0" }
wide = "1.7.0"
ash = { version = "0.38", default-features = false, features = ["std", "debug", "loaded"] }
windows = { version = "0.62", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_LibraryLoader",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D11on12",
"Win32_Graphics_Direct3D12",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
] }
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging"
] }
objc2 = "0.6"
objc2-metal = { version = "0.3", features = [
"MTLDevice",
"MTLCommandQueue",
"MTLCommandBuffer",
"MTLCommandEncoder",
"MTLBlitCommandEncoder",
"MTLTexture",
"MTLTypes",
"MTLResource",
"MTLPixelFormat",
] }
retour = { version = "0.4.0-alpha.4", features = ["static-detour"] }
libc = "0.2.189"
criterion = { version = "0.8.2", features = ["html_reports"] }
url = "2.5.8"
percent-encoding = "2.3.2"
adblock = "0.13.3"
ciborium = "0.2.2"
quick-xml = "0.42.0"
[workspace.lints.rust]
unconditional_panic = "deny"
[workspace.lints.clippy]
panic = "deny"
unwrap_used = "deny"
expect_used = "deny"
todo = "deny"
unimplemented = "deny"
panic_in_result_fn = "deny"
[profile.release]
debug = "line-tables-only"
lto = true
codegen-units = 1
panic = "abort"
[profile.bench]
debug = "line-tables-only"
lto = true
codegen-units = 1