├── .github └── workflows │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── docs ├── img.png ├── swaptop.gif ├── theme-demo.gif └── unit-ch.gif └── src ├── main.rs ├── swap_info.rs └── theme.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/README.md -------------------------------------------------------------------------------- /docs/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/docs/img.png -------------------------------------------------------------------------------- /docs/swaptop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/docs/swaptop.gif -------------------------------------------------------------------------------- /docs/theme-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/docs/theme-demo.gif -------------------------------------------------------------------------------- /docs/unit-ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/docs/unit-ch.gif -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/swap_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/src/swap_info.rs -------------------------------------------------------------------------------- /src/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-ota/swaptop/HEAD/src/theme.rs --------------------------------------------------------------------------------