aio_limited/
lib.rs

1// Copyright 2018 Parity Technologies (UK) Ltd.
2//
3// Licensed under the Apache License, Version 2.0 or MIT license, at your option.
4//
5// A copy of the Apache License, Version 2.0 is included in the software as
6// LICENSE-APACHE and a copy of the MIT license is included in the software
7// as LICENSE-MIT. You may also obtain a copy of the Apache License, Version 2.0
8// at https://www.apache.org/licenses/LICENSE-2.0 and a copy of the MIT license
9// at https://opensource.org/licenses/MIT.
10
11mod algorithms;
12mod error;
13mod limited;
14mod limiter;
15
16pub use crate::error::Error;
17pub use crate::limited::Limited;
18pub use crate::limiter::Limiter;