1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00
This commit is contained in:
Wez Furlong 2019-09-29 12:29:34 -07:00
parent 99579bfca2
commit 91e6bb4a5a

View File

@ -1,4 +1,4 @@
#![cfg_attr(feature="async_await", feature(async_await))]
#![cfg_attr(feature = "async_await", feature(async_await))]
use ::window::*;
use failure::Fallible;
@ -61,7 +61,7 @@ impl WindowCallbacks for MyWindow {
}
}
#[cfg(feature="async_await")]
#[cfg(feature = "async_await")]
async fn spawn_window() -> Result<(), Box<dyn std::error::Error>> {
let win = Window::new_window(
"myclass",
@ -90,7 +90,7 @@ async fn spawn_window() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}
#[cfg(feature="async_await")]
#[cfg(feature = "async_await")]
fn main() -> Fallible<()> {
let conn = Connection::init()?;
conn.spawn_task(async {
@ -100,7 +100,7 @@ fn main() -> Fallible<()> {
conn.run_message_loop()
}
#[cfg(not(feature="async_await"))]
#[cfg(not(feature = "async_await"))]
fn main() {
eprintln!("Run me with rust 1.39 or later, or a current nightly build");
eprintln!(" cargo +nightly run --example async --features async_await");