Skip to content

Commit 8c5b2b3

Browse files
author
Stephan Dilly
committed
switch deprecated transitive dependency net2->socket2 - crossterm update (closes #66)
1 parent e4e61d8 commit 8c5b2b3

File tree

3 files changed

+44
-103
lines changed

3 files changed

+44
-103
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
### Fixed
10+
- switch deprecated transitive dependency `net2`->`socket2` [in `crossterm`->`mio`] ([#66](https://github.com/extrawurst/gitui/issues/66))
11+
912
## [0.8.0] - 2020-07-06
1013

1114
### Added

Cargo.lock

Lines changed: 40 additions & 100 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
#![forbid(unsafe_code)]
22
#![deny(clippy::cargo)]
3-
//TODO: remove once crossterm upgraded to current mio:
4-
//https://github.com/crossterm-rs/crossterm/issues/432
5-
#![allow(clippy::cargo::multiple_crate_versions)]
63
#![deny(clippy::pedantic)]
74
#![deny(clippy::nursery)]
85
#![deny(clippy::result_unwrap_used)]
96
#![deny(clippy::panic)]
107
#![allow(clippy::module_name_repetitions)]
8+
#![allow(clippy::multiple_crate_versions)]
119

1210
mod app;
1311
mod cmdbar;

0 commit comments

Comments
 (0)