blob: 8d2881494595c32c33ad35d83d6430c84679b131 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! A networking stack.
#![feature(async_await, await_macro, futures_api)]
// In case we roll the toolchain and something we're using as a feature has been
// stabilized.
#![allow(stable_features)]
#![deny(missing_docs)]
#![deny(unreachable_patterns)]
mod eventloop;
use crate::eventloop::EventLoop;
fn main() -> Result<(), failure::Error> {
fuchsia_syslog::init()?;
// Severity is set to debug during development.
fuchsia_syslog::set_severity(-1);
let mut executor = fuchsia_async::Executor::new()?;
Ok(executor.run_singlethreaded(EventLoop::dummy_run())?)
}