refactor: make ready for cargo publishing

This commit is contained in:
Nova
2022-09-17 18:43:04 -04:00
parent ee250b33fa
commit df61f74583
19 changed files with 41 additions and 42 deletions

View File

@@ -10,9 +10,9 @@ use crate::nodes::root::Root;
use crate::nodes::spatial;
use anyhow::Result;
use lazy_static::lazy_static;
use libstardustxr::messenger::Messenger;
use once_cell::sync::OnceCell;
use parking_lot::Mutex;
use stardust_xr::messenger::Messenger;
use std::path::PathBuf;
use std::sync::{Arc, Weak};
use tokio::net::UnixStream;

View File

@@ -1,7 +1,7 @@
use super::client::Client;
use anyhow::Result;
use libstardustxr::server;
use slab::Slab;
use stardust_xr::server;
use std::sync::atomic::AtomicU64;
use std::sync::Arc;
use tokio::net::UnixListener;

View File

@@ -1,9 +1,9 @@
use crate::core::client::Client;
use crate::nodes::Node;
use anyhow::Result;
use libstardustxr::scenegraph;
use libstardustxr::scenegraph::ScenegraphError;
use once_cell::sync::OnceCell;
use stardust_xr::scenegraph;
use stardust_xr::scenegraph::ScenegraphError;
use std::sync::{Arc, Weak};
use core::hash::BuildHasherDefault;