diff --git a/Cargo.lock b/Cargo.lock index 2fdf2d3..12629a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -893,8 +893,8 @@ dependencies = [ ] [[package]] -name = "tarangam_dwij" -version = "0.1.0" +name = "tarangam" +version = "0.2.0" dependencies = [ "cairo-rs", "gdk", diff --git a/src/main.rs b/src/main.rs index f24a7ee..d09d763 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ use gio::prelude::*; use std::env::args; use std::sync::Arc; -use tarangam_dwij::util::Config; +use tarangam::util::Config; #[tokio::main] @@ -16,7 +16,7 @@ async fn main() { let tmp_conf = Arc::clone(&conf); app.connect_activate(move |app| { - tarangam_dwij::build_ui(app, &tmp_conf); + tarangam::build_ui(app, &tmp_conf); }); app.run(&args().collect::>());