├── .github └── dependabot.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── img └── log_messages_styled.png └── src ├── lib.rs └── style.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/README.md -------------------------------------------------------------------------------- /img/log_messages_styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/img/log_messages_styled.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamcodemaker/console_log/HEAD/src/style.rs --------------------------------------------------------------------------------