├── .github └── workflows │ ├── release.yml │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src ├── args.rs ├── downloader.rs ├── main.rs ├── selector.rs ├── types ├── channel.rs ├── config.rs ├── mod.rs └── stream.rs └── utils.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | *.old 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/downloader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/downloader.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/selector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/selector.rs -------------------------------------------------------------------------------- /src/types/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/types/channel.rs -------------------------------------------------------------------------------- /src/types/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/types/config.rs -------------------------------------------------------------------------------- /src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/types/mod.rs -------------------------------------------------------------------------------- /src/types/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/types/stream.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roshan-R/termv-rs/HEAD/src/utils.rs --------------------------------------------------------------------------------