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]]
name = "tarangam_dwij"
version = "0.1.0"
name = "tarangam"
version = "0.2.0"
dependencies = [
"cairo-rs",
"gdk",

View File

@ -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::<Vec<_>>());