Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bonsaiden/cobalt-rs
Low level, UDP based networking library for rust.
https://github.com/bonsaiden/cobalt-rs
Last synced: about 1 month ago
JSON representation
Low level, UDP based networking library for rust.
- Host: GitHub
- URL: https://github.com/bonsaiden/cobalt-rs
- Owner: BonsaiDen
- License: apache-2.0
- Created: 2015-08-05T23:00:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-14T19:48:38.000Z (over 5 years ago)
- Last Synced: 2024-10-13T13:29:14.663Z (2 months ago)
- Language: Rust
- Homepage: https://bonsaiden.github.io/cobalt-rs/doc/cobalt/
- Size: 4.94 MB
- Stars: 57
- Watchers: 9
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# cobalt [![Build Status](https://img.shields.io/travis/BonsaiDen/cobalt-rs/master.svg?style=flat-square)](https://travis-ci.org/BonsaiDen/cobalt-rs) [![Build status](https://img.shields.io/appveyor/ci/BonsaiDen/cobalt-rs/master.svg?style=flat-square)](https://ci.appveyor.com/project/BonsaiDen/cobalt-rs) [![Crates.io](https://img.shields.io/crates/v/cobalt.svg?style=flat-square)](https://crates.io/crates/cobalt) [![License](https://img.shields.io/crates/l/cobalt.svg?style=flat-square)]() [![Coverage Status](https://coveralls.io/repos/github/BonsaiDen/cobalt-rs/badge.svg?branch=master)](https://coveralls.io/github/BonsaiDen/cobalt-rs?branch=master)
A [rust](https://rust-lang.org/) based networking library providing [virtual
connections over UDP](http://gafferongames.com/networking-for-game-programmers/udp-vs-tcp/)
with an included message layer supporting both unreliable messaging and reliable
messages with optional in-order delivery.- [Documentation](https://bonsaiden.github.io/cobalt-rs/cobalt/index.html) for the latest master build.
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
cobalt = "0.22.0"
```and this to your crate root:
```rust
extern crate cobalt;
```For usage examples please refer to the documentation of the libraries server
and client abstractions.## License
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you shall be dual licensed as above, without any
additional terms or conditions.