diff --git a/Cargo.toml b/Cargo.toml index 9fc6fc2..d7c4c2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "iptvnator_rs" +name = "iptvnator" version = "0.1.0" edition = "2021" diff --git a/README.md b/README.md index 881ff1c..5f444a9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Iptvnator_rs +# Iptvnator An iptvclient that is capable of parsing and reading m3uplaylists of essentially arbitrary sizes _blazingly fast_ diff --git a/src/main.rs b/src/main.rs index c102f77..003e525 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,11 +3,11 @@ use std::process::Command; use std::rc::Rc; use colored::Colorize; -use iptvnator_rs::{download_with_progress, setup, M3u8, Parser, Readline}; +use iptvnator::{download_with_progress, setup, M3u8, Parser, Readline}; #[tokio::main] async fn main() { - println!("Welcome to iptvnator_rs, the port of my iptvprogram written in python, now in rust BLAZINGLY FAST\n"); + println!("Welcome to iptvnator, the port and extension of my previous program pyiptvnator, now in rust BLAZINGLY FAST\n"); println!( "There will be some options along the way \n {} is for refreshing your iptvfile.\n {} is to quit and save watched feeds\n {} is to download fields\n {} is to perform a new search", "r".bold(),"q".bold(),"d".bold(),"s".bold()