├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── ascii_assets └── laptop.txt └── src ├── lib.rs ├── main.rs └── packages.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/README.md -------------------------------------------------------------------------------- /ascii_assets/laptop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/ascii_assets/laptop.txt -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/packages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ruturajn/fetchit/HEAD/src/packages.rs --------------------------------------------------------------------------------