@@ -84,23 +84,23 @@ naga-ir = ["dep:naga"]
84
84
strict_asserts = [" wgpu-core?/strict_asserts" , " wgpu-types/strict_asserts" ]
85
85
86
86
# # Enables serialization via `serde` on common wgpu types.
87
- serde = [" dep:serde" , " wgpu-core/serde" ]
87
+ serde = [" dep:serde" , " wgpu-core? /serde" ]
88
88
89
89
# Uncomment once we get to https://github.com/gfx-rs/wgpu/issues/5974
90
90
# ## Allow writing of trace capture files. See [`Adapter::request_device`].
91
91
# trace = ["serde", "wgpu-core/trace"]
92
92
93
93
# # Allow deserializing of trace capture files that were written with the `trace` feature.
94
94
# # To replay a trace file use the [wgpu player](https://github.com/gfx-rs/wgpu/tree/trunk/player).
95
- replay = [" serde" , " wgpu-core/replay" ]
95
+ replay = [" serde" , " wgpu-core? /replay" ]
96
96
97
97
# ! ### Other
98
98
# --------------------------------------------------------------------
99
99
100
100
# # Internally count resources and events for debugging purposes. If the counters
101
101
# # feature is disabled, the counting infrastructure is removed from the build and
102
102
# # the exposed counters always return 0.
103
- counters = [" wgpu-core/counters" ]
103
+ counters = [" wgpu-core? /counters" ]
104
104
105
105
# # Implement `Send` and `Sync` on Wasm, but only if atomics are not enabled.
106
106
# #
@@ -111,8 +111,8 @@ counters = ["wgpu-core/counters"]
111
111
# # but on a wasm binary compiled without atomics we know we are definitely
112
112
# # not in a multithreaded environment.
113
113
fragile-send-sync-non-atomic-wasm = [
114
- " wgpu-hal/fragile-send-sync-non-atomic-wasm" ,
115
- " wgpu-core/fragile-send-sync-non-atomic-wasm" ,
114
+ " wgpu-hal? /fragile-send-sync-non-atomic-wasm" ,
115
+ " wgpu-core? /fragile-send-sync-non-atomic-wasm" ,
116
116
" wgpu-types/fragile-send-sync-non-atomic-wasm" ,
117
117
]
118
118
@@ -126,7 +126,7 @@ fragile-send-sync-non-atomic-wasm = [
126
126
# # must be shipped alongside `dxcompiler.dll` and `dxil.dll` (which can be downloaded from Microsoft's GitHub).
127
127
# # This feature statically links a version of DXC so that no external binaries are required
128
128
# # to compile DX12 shaders.
129
- static-dxc = [" wgpu-hal/static-dxc" ]
129
+ static-dxc = [" wgpu-hal? /static-dxc" ]
130
130
131
131
# ########################
132
132
# Standard Dependencies #
0 commit comments