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:
parent
f87901c484
commit
3cf20acd13
@ -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;
|
||||
|
@ -1,6 +1,3 @@
|
||||
extern crate failure;
|
||||
extern crate termwiz;
|
||||
|
||||
use failure::Error;
|
||||
use termwiz::caps::Capabilities;
|
||||
use termwiz::cell::AttributeChange;
|
||||
|
@ -1,6 +1,3 @@
|
||||
extern crate failure;
|
||||
extern crate termwiz;
|
||||
|
||||
use failure::Error;
|
||||
use termwiz::caps::Capabilities;
|
||||
use termwiz::input::{InputEvent, KeyCode, KeyEvent, Modifiers};
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user