diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-11 00:24:12 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-11 00:24:12 +0100 |
commit | e9e5df5ff1e09356bf2ad0bcc82bbaee6a2acc0d (patch) | |
tree | be3ed59dc7a82ab7d973b7fa88930d7f69c76c49 /client/src/main.rs | |
parent | 2c8360de342872f65bdef037f3fb5d598b8f26a0 (diff) | |
download | weareserver-e9e5df5ff1e09356bf2ad0bcc82bbaee6a2acc0d.tar weareserver-e9e5df5ff1e09356bf2ad0bcc82bbaee6a2acc0d.tar.bz2 weareserver-e9e5df5ff1e09356bf2ad0bcc82bbaee6a2acc0d.tar.zst |
things
Diffstat (limited to 'client/src/main.rs')
-rw-r--r-- | client/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/main.rs b/client/src/main.rs index 0ee665c..091854b 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -15,6 +15,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ #![feature(iter_array_chunks)] +#![feature(mpmc_channel)] pub mod camera; pub mod download; pub mod network; @@ -22,8 +23,8 @@ pub mod renderer; pub mod scene_prepare; pub mod scene_render; pub mod state; -pub mod window; pub mod ui; +pub mod window; use anyhow::Result; use clap::Parser; |