├── .github └── workflows │ ├── release.yml │ └── rust.yml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── screenshot.png ├── src ├── action.rs ├── application.rs ├── commands.rs ├── commands │ ├── send_file.rs │ └── send_stream │ │ ├── linux.rs │ │ ├── mod.rs │ │ └── other.rs ├── config.rs ├── encoder.rs ├── lib.rs ├── main.rs ├── message.rs ├── renderer.rs ├── state.rs ├── terminal_events.rs ├── ui.rs └── util.rs └── tests └── send_file.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/action.rs -------------------------------------------------------------------------------- /src/application.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/application.rs -------------------------------------------------------------------------------- /src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/commands.rs -------------------------------------------------------------------------------- /src/commands/send_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/commands/send_file.rs -------------------------------------------------------------------------------- /src/commands/send_stream/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/commands/send_stream/linux.rs -------------------------------------------------------------------------------- /src/commands/send_stream/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/commands/send_stream/mod.rs -------------------------------------------------------------------------------- /src/commands/send_stream/other.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/commands/send_stream/other.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/encoder.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/message.rs -------------------------------------------------------------------------------- /src/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/renderer.rs -------------------------------------------------------------------------------- /src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/state.rs -------------------------------------------------------------------------------- /src/terminal_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/terminal_events.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/ui.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/send_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemunozm/termchat/HEAD/tests/send_file.rs --------------------------------------------------------------------------------