1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-10 15:04:32 +03:00

remove the last of the extern crate lines

This commit is contained in:
Wez Furlong 2019-05-26 09:00:42 -07:00
parent f87901c484
commit 3cf20acd13
5 changed files with 0 additions and 14 deletions

View File

@ -2,9 +2,6 @@
//! up changes and then flush them. `BufferedTerminal` enables
//! optimizing the output sequence to update the screen, which is
//! important on links with poor connectivity.
extern crate failure;
extern crate termwiz;
use failure::Error;
use termwiz::caps::Capabilities;
use termwiz::cell::AttributeChange;

View File

@ -1,6 +1,3 @@
extern crate failure;
extern crate termwiz;
use failure::Error;
use termwiz::caps::Capabilities;
use termwiz::cell::AttributeChange;

View File

@ -1,6 +1,3 @@
extern crate failure;
extern crate termwiz;
use failure::Error;
use termwiz::caps::Capabilities;
use termwiz::input::{InputEvent, KeyCode, KeyEvent, Modifiers};

View File

@ -4,8 +4,6 @@
//! Consider using the `Surface` struct to enable optimization;
//! the `buffered_terminal.rs` example demonstrates a simple
//! way to enable optimizations.
extern crate failure;
extern crate termwiz;
use failure::Error;
use termwiz::caps::Capabilities;

View File

@ -1,8 +1,5 @@
//! This example shows how to make a basic widget that accumulates
//! text input and renders it to the screen
extern crate failure;
extern crate termwiz;
use failure::Error;
use termwiz::caps::Capabilities;
use termwiz::cell::AttributeChange;