Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump futures from 0.3.6 to 0.3.7 #302

Merged
merged 1 commit into from Oct 26, 2020
Merged

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps futures from 0.3.6 to 0.3.7.

Release notes

Sourced from futures's releases.

0.3.7

  • Fixed unsoundness in MappedMutexGuard (#2240)
  • Re-exported TakeUntil (#2235)
  • futures-test: Prevent double panic in panic_waker (#2236)
Changelog

Sourced from futures's changelog.

0.3.7 - 2020-10-23

  • Fixed unsoundness in MappedMutexGuard (#2240)
  • Re-exported TakeUntil (#2235)
  • futures-test: Prevent double panic in panic_waker (#2236)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.6 to 0.3.7.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.6...0.3.7)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Oct 26, 2020
@bee-san bee-san merged commit 76b3116 into master Oct 26, 2020
@delete-merged-branch delete-merged-branch bot deleted the dependabot/cargo/futures-0.3.7 branch October 26, 2020 19:09
bee-san added a commit that referenced this pull request Nov 2, 2022
* Bump rlimit from 0.3.0 to 0.4.0

Bumps [rlimit](https://github.com/Nugine/rlimit) from 0.3.0 to 0.4.0.
- [Release notes](https://github.com/Nugine/rlimit/releases)
- [Commits](Nugine/rlimit@v0.3.0...v0.4.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Updated README to include instructions on building the new Dockerfile

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Bump async-std from 1.6.2 to 1.6.3

Bumps [async-std](https://github.com/async-rs/async-std) from 1.6.2 to 1.6.3.
- [Release notes](https://github.com/async-rs/async-std/releases)
- [Changelog](https://github.com/async-rs/async-std/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-rs/async-std/commits/v1.6.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* docs: fix typo in README.md, link to GitHub flow in contributing doc

* Add host resolution

For now if we can establish a socket on port 80 we can infer the IP of the
host. This might change in the future if we start considering other
ports like 443.

* Updated README to use the rustscan dockerhub alpine image

+ Added another step to clarify process for Docker as the build will fail if the user is not in the downloaded repo

+ DockerHub has CI with master branch and two images tags `latest` and `alpine` where `alpine` is tagged on feature releases (currently 1.7.1)

* Update README to add a disclaimer about the DockerHub Images

+ Instruct user to use the `alpine` image as it's considered the latest major release as per the release page

+ Formatting instructions

* Reduce crate size

* Use absolute image URLs instead of relative

* Add --port and --range options

These options are mutually exclusive, this means that when a user
selects manual ports we will ignore ranges and vice-versa.

Manually specifying ports won't allow scan randomization for now.

* updated config file to feature nmap top 1k ports

* removed -A from nmap

* updated AUR package in readme

* Allow randomized order for manual ports

Before this change we would always scan manually specified ports in
sequential way, this is not the case anymore. This is an important
change since we are planning to introduce a config file with the top 1K
ports and we would like to scan those in a randomized way.

* Reduce binary size from 2.4MB to 1.9MB

By default, Cargo instructs compilation units to be compiled and optimized
in isolation. LTO instructs the linker to optimize at the link stage.
This can, for example, remove dead code and often times reduces binary size.

By default, when Rust code encounters a situation when it must call panic!(),
it unwinds the stack and produces a helpful backtrace. The unwinding code,
however, does require extra binary size. rustc can be instructed to abort
immediately rather than unwind, which removes the need for this extra unwinding code.

For more information see: https://github.com/johnthagen/min-sized-rust

* 2000 milliseconds not seconds

* Bump structopt from 0.3.16 to 0.3.17

Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.16 to 0.3.17.
- [Release notes](https://github.com/TeXitoi/structopt/releases)
- [Changelog](https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md)
- [Commits](TeXitoi/structopt@v0.3.16...v0.3.17)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fixed small typo in a warning message

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Convert -T to -t

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Add Travis configuration to publish doc to GitHub pages

* added submodule

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* 1.8.0 publish

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Cleanup Dockerfile

* Pin Alpine 3.12 to prevent breakages in the future

* Prevent cache bustages

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* added travis token

* Remove argument placeholders in docker alias

* Mark code blocks as bash commands in README

* Move "rustscan -h" and output together

* updated logo

* Update README.md

* Add Fedora/CentOS installation instructions

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Add configuration file

This configuration file will be read from the home directory of the
user. Options set within this file will have priority over arguments
from the command line unless the `--no-config` option is passed to the
program.

* Update README.md

Typo fix in the Debian / Kali install section.

* Check '.config/rustscan/config.toml' for config

When reading the config file '$CONFIG_DIR/.config/rustscan/config.toml'
should also be checked. If both '~/.rustscan.toml' and
'$CONFIG_DIR/.config/rustscan/config.toml' exist, then later will be
used.

* Introduce the -no-nmap option

As the name implies this will allow RustScan to to run the scan without
starting an nmap scan with ports that are found.

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Update FUNDING.yml

* Add CIDR support

Add CIDR support for ips_or_hosts argument. This will allow our users to
specify multiple IPs within a network at once which is pretty
convenient.

* Improved scanner engine to work more efficient and consistent with scanning.

* Small improvement at an if.

* Fix format.

* Remove unnecessary comment.
Fix mistake at adding futures to the initial stream.

* added release drafter

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* Fix incorrect timeout option

* Logic at adding targets to the FuturesUnordered rolled back to the initial.
In case of batchsize higher than all sockets to scan, we could end up in an infinite loop. Fixed with breaking out of the loop if that's the case.

* Introduce SocketIterator

The goal of this iterator is to generate sockets based on combinations
of IPs and ports in a memory-bounded way, we only consume the next item
of this iterator when a socket has been processed by our scanner.

Before this change we were generating every combination of IP and port
and storing it in a VecDeque, and while this is fine for a small subset
of IPs and ports it can quickly get out of hand with multiple IPs and
a big port range.

* Bump serde from 1.0.115 to 1.0.116

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.115 to 1.0.116.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.115...v1.0.116)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump serde_derive from 1.0.115 to 1.0.116

Bumps [serde_derive](https://github.com/serde-rs/serde) from 1.0.115 to 1.0.116.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.115...v1.0.116)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* fixed debug log

* cargo fmt

* Fix behaviour of --no-nmap flag

At some point we forgot to check for this flag before actually running
our post scanning tasks. I've also adjusted some of our messages for
reporting.

* Updated README to reflect v1.8.0 DockerHub tag

v1.8.0 is the most recent published version of RustScan, the alpine tag quickly became depreciated - meaning people had to rely on `latest` to get any features made within the last month.

Version tags will build as per major realease i.e. `v1.9.0`

* Update README.md

Small typos after initial commit to #224

* Bump async-std from 1.6.3 to 1.6.4

Bumps [async-std](https://github.com/async-rs/async-std) from 1.6.3 to 1.6.4.
- [Release notes](https://github.com/async-rs/async-std/releases)
- [Changelog](https://github.com/async-rs/async-std/blob/master/CHANGELOG.md)
- [Commits](async-rs/async-std@v1.6.3...v1.6.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Runtime measurement implementation, better debugging, and better error handling for unreachable hosts.

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

* fix typo

* Added top ports, fixed accessibility. (#230)

* Refactored scanner struct for accessibility, fixed macros

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* fixed accessible issues

* socket_iterator: use itertools.iproducts for ip x ports set (#231)

Replace the current manual iterator-like implementation
with the call to the itertools.iproduct macro
to generate the cartesian product of the IPs and ports.

stdlib reference:
https://docs.rs/itertools/0.9.0/itertools/macro.iproduct.html

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* releasing

* Update README for v1.9.0 release

DockerHub tag for v1.9.0 release has been pushed too

* Update README for v1.9.0 release (#233)

DockerHub tag for v1.9.0 release has been pushed too

* typo in docker instructions

* Refactored test, intorduced default() in test context for structs for easier test writing, Scanner struct quiet changed to greppable. (#235)

* Increase code coverage (#236)

* Updated code coverage

* README updates

* docs: add dmitris as a contributor (#232)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Update Dockerfile to encourage layer caching (#241)

At the moment the Dockerfile brings the entire current directory in as a context for the building container. We can encourage some caching here by only bringing forward the essentials:
`cargo.tml`, `cargo.lock` and the `src`

+ Added a maintainer label

* Fixed output error, Warning! ran when file opened (#237)

Take file of addresses as input

* Bump structopt from 0.3.17 to 0.3.18 (#243)

Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.17 to 0.3.18.
- [Release notes](https://github.com/TeXitoi/structopt/releases)
- [Changelog](https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md)
- [Commits](TeXitoi/structopt@v0.3.17...v0.3.18)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Added DNS lookup using Google DNS, refactored IP code (#246)

* Added DNS lookup using Google DNS, refactored IP code

* fixed comments & cargo fmt

* Fixed code review comments, added tests, removed unwrap() panics

* Added assertion to test

* 1.10.0 release

* 1.10.0 release

* building CI

* building CI

* Added HomeBrew Bump + More CI Tests (#252)

* CI and more tests

* included package name

* Update README for instructions for v.10.0 & detail history (#251)

DockerHub now contains every major release from `v1.0.1` to `1.10.0`

Waiting for this README PR to approve before I remove the `v1.9.0` DockerHub tag as it no longer conforms with standards.

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Add integration tests with timeout (#254)

* Add integration tests with timeout

* cargo fmt

* Fix travis command line

* Add extra margins for the timeout values

* Increase the time to scan

Output the time taken after each test

* docs: add bofh69 as a contributor (#256)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Updated the person of README. (#255)

Fixed some minor description corrections in README.

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Update documentation to include greppable (#253)

* Update documentation include greppable

* Replace quiet mode for greppable mode

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Fix cosmetic issues, change maintainer to rustscan (#249)

Changing only a few lines does not give you maintainer. Also people might contact the person if they need to reach out about something which is probably not intended.

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* docs: add mattcorbin as a contributor (#261)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Fix archives-generation from Makefile 👷‍♂️ (#263)

* Bump futures from 0.3.5 to 0.3.6 (#265)

Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.6.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.5...0.3.6)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Bump structopt from 0.3.18 to 0.3.19 (#267)

Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.18 to 0.3.19.
- [Release notes](https://github.com/TeXitoi/structopt/releases)
- [Changelog](https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md)
- [Commits](TeXitoi/structopt@v0.3.18...v0.3.19)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Update .SRCINFO url (#268)

Update the .SRCINFO file to point to new repo URL

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* docs: add rootsploit as a contributor (#274)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Bump structopt from 0.3.19 to 0.3.20 (#272)

Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.19 to 0.3.20.
- [Release notes](https://github.com/TeXitoi/structopt/releases)
- [Changelog](https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md)
- [Commits](TeXitoi/structopt@v0.3.19...v0.3.20)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Bump toml from 0.5.6 to 0.5.7 (#270)

Bumps [toml](https://github.com/alexcrichton/toml-rs) from 0.5.6 to 0.5.7.
- [Release notes](https://github.com/alexcrichton/toml-rs/releases)
- [Commits](toml-rs/toml-rs@0.5.6...0.5.7)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Make address an optional instead of a positional argument (#271)

This has the benefit of making the input flexible and fixing an existing
bug that happens when a single port is specified, see #211.

Other benefits:
  - We are now parsing only failures as a file, reducing the amount of
    attempts to open a file.
  - We check if a file exists before trying to open it.

Fixes #211

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* docs: add eiffel-fl as a contributor (#281)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* docs: add niklasmohrin as a contributor (#282)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Add tries to scan_socket. (#266)

By default the number of try is 1, it can be set on the command line by using
--tries option.

This should close #38.

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Bump serde from 1.0.116 to 1.0.117 (#278)

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.116 to 1.0.117.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.116...v1.0.117)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Fix Rlimit breaking change. (#283) (#284)

* Replace rlimit::rlim with rlimit::RawRlim

Signed-off-by: u5surf <u5.horie@gmail.com>

* docs: add u5surf as a contributor (#285)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Scripting Engine Implementation.

* Fix clippy warnings around match expressions

* Fix clippy warnings about syntax

* Fix clippy warnings around return statements that could just be expressions

* Fix clippy warnings around under-specific method calls

* Add clippy workflow

* Additional small if let refactors

* docs: add niklasmohrin as a contributor (#288)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Add tests for rustscan scripting engine (#286) (#289)

* Add tests for rustscan scripting engine (#286)

* Increase test coverage

* Add more scripting tests

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* docs: add okrplay as a contributor (#290)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Bump env_logger from 0.7.1 to 0.8.1 (#295)

Bumps [env_logger](https://github.com/env-logger-rs/env_logger) from 0.7.1 to 0.8.1.
- [Release notes](https://github.com/env-logger-rs/env_logger/releases)
- [Changelog](https://github.com/env-logger-rs/env_logger/blob/master/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.7.1...v0.8.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Add some instructions to create contributing development environment. (#298)

A new Dockerfile "contributing.Dockerfile" was added.
This Dockerfile permits creating a "ready to develop" container image to ease
contributing to RustScan.
The instructions to use it are detailed in contributing.md.

* Better enforce clippy lints (#294)

* Clippy deny default lints and warn for clippy::pedantic

* Fix all existing pedantic clippy lints on stable and nightly

* Improve error handling in scripts init (#300)

* Changed the dns resolving to use std::net::ToSocketAddrs (#264)

* Changed dns resolving library to to_socket_addrs and removed the usage of trust-dns

* Reverted automatic IDE spacing

* Ran cargo fmt on the code

* Made trust-dns a fallback dns resolver and reverted cargo toml and lock

* Reverted cargo.lock

* Ran cargo fmt

* Changed style of err checking

* Fixed errors

* Fixed merging errors

* Changed for CR

Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Bump futures from 0.3.6 to 0.3.7 (#302)

Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.6 to 0.3.7.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.6...0.3.7)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Redesign of README (#293)

Updated README

Co-authored-by: bee <bee@pop-os.localdomain>

* Bump async-std from 1.6.5 to 1.7.0 (#306)

Bumps [async-std](https://github.com/async-rs/async-std) from 1.6.5 to 1.7.0.
- [Release notes](https://github.com/async-rs/async-std/releases)
- [Changelog](https://github.com/async-rs/async-std/blob/master/CHANGELOG.md)
- [Commits](async-rs/async-std@v1.6.5...v1.7.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* Bump anyhow from 1.0.33 to 1.0.34 (#304)

Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.33 to 1.0.34.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.33...1.0.34)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>

* cargo.lock

* 2.0

* Delete bump.yml

* update logo

* fixing cargo lock

* Bump env_logger from 0.8.1 to 0.8.2 (#317)

Bumps [env_logger](https://github.com/env-logger-rs/env_logger) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/env-logger-rs/env_logger/releases)
- [Changelog](https://github.com/env-logger-rs/env_logger/blob/master/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.8.1...v0.8.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Scripting engine extra user argument interpretation error fixed. Scanner engine errors and error handling clarified. (#325)

* Update README.md

* Partially fix #362: Fix examples (#363)

Include -a to specify addresses

* Bump serde from 1.0.117 to 1.0.124 (#361)

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.117 to 1.0.124.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.117...v1.0.124)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Bump anyhow from 1.0.34 to 1.0.40 (#368)

Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.34 to 1.0.40.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.34...1.0.40)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Bump cidr-utils from 0.5.0 to 0.5.1 (#367)

Bumps [cidr-utils](https://github.com/magiclen/cidr-utils) from 0.5.0 to 0.5.1.
- [Release notes](https://github.com/magiclen/cidr-utils/releases)
- [Commits](magiclen/cidr-utils@v0.5.0...v0.5.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Brandon <github@skerritt.blog>

* Bump rlimit from 0.5.2 to 0.5.4 (#360)

Bumps [rlimit](https://github.com/Nugine/rlimit) from 0.5.2 to 0.5.4.
- [Release notes](https://github.com/Nugine/rlimit/releases)
- [Commits](Nugine/rlimit@v0.5.2...v0.5.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Brandon <github@skerritt.blog>

* Bump futures from 0.3.7 to 0.3.13 (#358)

Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.7 to 0.3.13.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.7...0.3.13)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Brandon <github@skerritt.blog>

* Update tui.rs (#396)

added a quote

* Update Cargo.lock file to support latest version of Rust (#435)

* 2.1.0 release

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: u5surf <u5.horie@gmail.com>
Co-authored-by: Bernardo Araujo <bernardo.amc@gmail.com>
Co-authored-by: Brandon <10378052+brandonskerritt@users.noreply.github.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Ben (CMNatic) <ben@cmnatic.co.uk>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: andy5995 <andy400-dev@yahoo.com>
Co-authored-by: Spenser Black <spenserblack01@gmail.com>
Co-authored-by: Brandon <brandonskerritt51@gmail.com>
Co-authored-by: Phenomite <8285537+Phenomite@users.noreply.github.com>
Co-authored-by: Ferry <alessandroferry@protonmail.com>
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
Co-authored-by: remigourdon <gourdon.remi@gmail.com>
Co-authored-by: Niklas Mohrin <47574893+niklasmohrin@users.noreply.github.com>
Co-authored-by: Artem Polishchuk <tim77@users.noreply.github.com>
Co-authored-by: Gabriel <26032081+usrGabriel@users.noreply.github.com>
Co-authored-by: mulc <buermarc2@gmail.com>
Co-authored-by: Bee <10378052+bee-san@users.noreply.github.com>
Co-authored-by: bergabman <bergabman@protonmail.com>
Co-authored-by: Martin Chrástek <chrastek12@gmail.com>
Co-authored-by: Dmitry Savintsev <dmitris@users.noreply.github.com>
Co-authored-by: bergabman <44554109+bergabman@users.noreply.github.com>
Co-authored-by: Sebastian Andersson <sebastian@bittr.nu>
Co-authored-by: Hardeep Singh <54495695+holmes-py@users.noreply.github.com>
Co-authored-by: Teofilo Monteiro <teofilojmmonteiro@gmail.com>
Co-authored-by: Thomas Gotwig <tgotwig@gmail.com>
Co-authored-by: Frederik B <freddyb@users.noreply.github.com>
Co-authored-by: eiffel-fl <laniel_francis@privacyrequired.com>
Co-authored-by: Y.Horie <u5.horie@gmail.com>
Co-authored-by: Niklas Mohrin <niklas.mohrin@gmail.com>
Co-authored-by: Oskar <32576280+okrplay@users.noreply.github.com>
Co-authored-by: shahar481 <45289173+shahar481@users.noreply.github.com>
Co-authored-by: bee <bee@pop-os.localdomain>
Co-authored-by: Brandon <github@skerritt.blog>
Co-authored-by: Thomas de Queiroz Barros <38295417+thomasqueirozb@users.noreply.github.com>
Co-authored-by: Ryan Montgomery <44453666+0dayCTF@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant