https://github.com/hyperium/http-connection
Asynchronous HTTP connection
https://github.com/hyperium/http-connection
Last synced: 8 months ago
JSON representation
Asynchronous HTTP connection
- Host: GitHub
- URL: https://github.com/hyperium/http-connection
- Owner: hyperium
- License: mit
- Created: 2019-05-08T19:27:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-22T22:39:29.000Z (about 5 years ago)
- Last Synced: 2024-08-09T10:50:53.674Z (over 1 year ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 11
- Watchers: 9
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# HTTP Connection
A trait representing asynchronous HTTP connection.
[![Build Status][azure-badge]][azure-url]
[azure-badge]: https://dev.azure.com/hyperium/http-connection/_apis/build/status/hyperium.http-connection?branchName=master
[azure-url]: https://dev.azure.com/hyperium/http-connection/_build/latest?definitionId=1&branchName=master
More information about this crate can be found in the [crate
documentation][dox].
[dox]: https://docs.rs/http-connection
## Usage
To use `http-connection`, first add this to your `Cargo.toml`:
```toml
[dependencies]
http-connection = "0.1.0"
```
Next, add this to your crate:
```rust
use http_connection::HttpConnection;
fn main() {
// ...
}
```
## License
This project is licensed under the [MIT license](LICENSE).
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `http-connection` by you, shall be licensed as MIT, without any additional
terms or conditions.