We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b43a410 commit bda3276Copy full SHA for bda3276
src/deps/mod.rs
@@ -2,7 +2,11 @@
2
pub use ::hut_03;
3
#[cfg(dep_hut_04)]
4
pub use ::hut_04;
5
+
6
+#[cfg(dep_hut_04)]
7
pub use hut_04 as hut;
8
+#[cfg(all(not(dep_hut_04), dep_hut_03))]
9
+pub use hut_03 as hut;
10
11
#[cfg(dep_windows_vk)]
12
pub use ::windows::Win32::UI::Input::KeyboardAndMouse::{self as windows, VIRTUAL_KEY};
0 commit comments