bugstalker 0.2.6

BugStalker is a modern and lightweight debugger for rust applications.
Documentation
# Contributing to BugStalker

You likely come here from the issues or pull requests page. There are some
suggestions on how to make your contribution most useful.

## File an issue

Consider using a bug report/feature request template. Feel free to adapt it for
your needs. You can opt out and start from a blank issue, but be mindful of the
completeness of the information.

There are feature requests of different kinds:

* A complement to existing functionality or another ready-to-implement request.
* A new idea or something else that requires a discussion.

The former is completely okay to be asked via an issue.

## Open a pull request

![flow.png](doc/flow.png)

The main purpose of the BugStalker development model is to provide two things:

1) All updates related to the release of new `rustc` versions must
   be released as quickly as possible.
2) Implementing of new features shouldn't interfere with the first point.

That is why BugStalker using a developing model similar to GitFlow.
There is a stable `master` branch and a `develop` branch with development
changes for the next release.
All changes into this project may be grouped into two big groups — features and
improvements.

If you want to add a new feature:

* create your own branch from `develop`
* implement feature
* create pull request into `develop` branch

If you want to send an improvement (a bugfix, readme fix,
or add support for one of `rustc` versions):

* create your own branch from `master`
* implement improvement
* create pull requests into `master` and `develop` branch

## Useful links

* [GitFlow] -- https://nvie.com/posts/a-successful-git-branching-model/

## Adding support for new compiler version, checklist

- [ ] add a new rustc version into `src/version.rs`
- [ ] update `.github/workflows/ci.yml` by adding a new version for integration and functional tests
- [ ] make sure the tests are not broken (in github ci too), correct test or sources if necessary
- [ ] fix `cargo fmt` and `cargo clippy` if needed
- [ ] add information about new version into `README.md` and `CHANGELOG.md`
- [ ] merge branch into master, rebase develop branch too
- [ ] create a new release from master branch