We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With the following setup in Cargo.toml, there is an indirect dependency on net2, which is deprecated as per: https://rustsec.org/advisories/RUSTSEC-2020-0016
[dependencies] hyper = "0.13.9"
More information:
$ cargo audit Fetching advisory database from `https://github.com/RustSec/advisory-db.git` Loaded 146 security advisories (from [...]/.cargo/advisory-db) Updating crates.io index Scanning Cargo.lock for vulnerabilities (58 crate dependencies) Crate: net2 Version: 0.2.35 Warning: unmaintained Title: `net2` crate has been deprecated; use `socket2` instead Date: 2020-05-01 ID: RUSTSEC-2020-0016 URL: https://rustsec.org/advisories/RUSTSEC-2020-0016 Dependency tree: net2 0.2.35 ├── miow 0.2.1 │ └── mio 0.6.22 │ └── tokio 0.2.22 │ ├── tokio-util 0.3.1 │ │ └── h2 0.2.7 │ │ └── hyper 0.13.9 │ ├── hyper 0.13.9 │ └── h2 0.2.7 └── mio 0.6.22 warning: 1 allowed warning found
The text was updated successfully, but these errors were encountered:
This is fixed by #2319
Sorry, something went wrong.
Aha, excellent. Approximately when can a new crate version be expected to be published?
Approximately when can a new crate version be expected to be published?
I don't know, but #2319 is part of the 0.14 milestone and that milestone still has many open issues.
Noted, thank you for the quick response.
No branches or pull requests
With the following setup in Cargo.toml, there is an indirect dependency on net2, which is deprecated as per: https://rustsec.org/advisories/RUSTSEC-2020-0016
More information:
The text was updated successfully, but these errors were encountered: