├── .github ├── CNAME ├── dependabot.yml └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets └── lazylora.png ├── install.ps1 ├── install.sh └── src ├── algorand.rs ├── app_state.rs ├── main.rs ├── tui.rs ├── ui.rs └── updater.rs /.github/CNAME: -------------------------------------------------------------------------------- 1 | lazylora.run 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/README.md -------------------------------------------------------------------------------- /assets/lazylora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/assets/lazylora.png -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/install.sh -------------------------------------------------------------------------------- /src/algorand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/src/algorand.rs -------------------------------------------------------------------------------- /src/app_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/src/app_state.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/src/tui.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/src/ui.rs -------------------------------------------------------------------------------- /src/updater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aorumbayev/lazylora/HEAD/src/updater.rs --------------------------------------------------------------------------------