Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/radicalzephyr/tokio-interceptor
The interceptor pattern for Tokio based event loops
https://github.com/radicalzephyr/tokio-interceptor
Last synced: about 19 hours ago
JSON representation
The interceptor pattern for Tokio based event loops
- Host: GitHub
- URL: https://github.com/radicalzephyr/tokio-interceptor
- Owner: RadicalZephyr
- License: lgpl-3.0
- Created: 2018-05-01T10:46:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T20:28:40.000Z (over 1 year ago)
- Last Synced: 2024-12-24T08:50:11.841Z (5 days ago)
- Language: Rust
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# tokio-interceptor
An event-driven application framework built on the `tokio` and
`futures` crates.## Usage
First, add this to your `Cargo.toml`:
```toml
[dependencies]
tokio-interceptor = "0.1"
```Next, add this to your crate:
```rust
extern crate tokio_interceptor;
```Right now the only documentation on how to get started is in the
`examples` folder. More to come soon.# License
Copyright 2018 Geoff Shannon
`tokio-interceptor` is free software: you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.See COPYING and COPYING.LESSER for details.