traxex 0.2.1

A library to download files through url link.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Parser;

#[derive(Parser, Debug, Clone)]
#[clap(author, version, about, long_about = None)]
#[command(about = "traxex, a simple and fast download library similar to wget, written in Rust.")]
pub struct Args {
    #[clap(short, long)]
    pub debug: bool,
    #[clap(short, long)]
    pub output: Option<String>,
    #[clap(index = 1, required = true)]
    pub url: String,
}