diff options
Diffstat (limited to 'ozone-cli')
| -rw-r--r-- | ozone-cli/Cargo.toml | 2 | ||||
| -rw-r--r-- | ozone-cli/src/main.rs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ozone-cli/Cargo.toml b/ozone-cli/Cargo.toml index bdcec85..61b7808 100644 --- a/ozone-cli/Cargo.toml +++ b/ozone-cli/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] sysinfo = { version = "0.33.1", features = ["system", "multithread"] } -o3launcher = { path = ".." } +ozone = { path = "../ozone" } tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "macros"] } simple_logger = { version = "5.0.0", features = ["colors"] } log = "0.4.25" diff --git a/ozone-cli/src/main.rs b/ozone-cli/src/main.rs index e36867a..a27cc98 100644 --- a/ozone-cli/src/main.rs +++ b/ozone-cli/src/main.rs @@ -2,7 +2,7 @@ use std::env::consts::{ARCH, OS}; use std::error::Error; use log::{error, info}; use sysinfo::System; -use o3launcher::launcher::{Launcher, Settings}; +use ozone::launcher::{Launcher, Settings}; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { @@ -26,8 +26,8 @@ async fn main() -> Result<(), Box<dyn Error>> { dbg!(&launch); info!("ok"); - - o3launcher::launcher::run_the_game(&launch)?; + + ozone::launcher::run_the_game(&launch)?; Ok(()) } |
