This commit is contained in:
Piyush मिश्रः 2021-04-28 01:10:27 +05:30
parent ae428b40f4
commit bfffeceafa
2 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -893,8 +893,8 @@ dependencies = [
] ]
[[package]] [[package]]
name = "tarangam_dwij" name = "tarangam"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"cairo-rs", "cairo-rs",
"gdk", "gdk",

View File

@ -4,7 +4,7 @@ use gio::prelude::*;
use std::env::args; use std::env::args;
use std::sync::Arc; use std::sync::Arc;
use tarangam_dwij::util::Config; use tarangam::util::Config;
#[tokio::main] #[tokio::main]
@ -16,7 +16,7 @@ async fn main() {
let tmp_conf = Arc::clone(&conf); let tmp_conf = Arc::clone(&conf);
app.connect_activate(move |app| { app.connect_activate(move |app| {
tarangam_dwij::build_ui(app, &tmp_conf); tarangam::build_ui(app, &tmp_conf);
}); });
app.run(&args().collect::<Vec<_>>()); app.run(&args().collect::<Vec<_>>());