summary refs log tree commit diff
path: root/async_core/src/lib.rs
blob: 96cdcf1055f3551a2e1ba66374c48fcb45c1fd98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Extensions using cros_async and futures-rs to add asynchronous operations to sys_util features.
//! Provides basic `Futures` implementations for some of the interfaces provided by the `sys_util`
//! crate.

mod eventfd;

pub use eventfd::EventFd;