https://github.com/bonsaiden/cobalt-rs
Low level, UDP based networking library for rust.
https://github.com/bonsaiden/cobalt-rs
Last synced: 1 day 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 (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-05-14T19:48:38.000Z (about 6 years ago)
- Last Synced: 2025-07-04T08:04:13.670Z (1 day ago)
- Language: Rust
- Homepage: https://bonsaiden.github.io/cobalt-rs/doc/cobalt/
- Size: 4.94 MB
- Stars: 59
- Watchers: 8
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# cobalt [](https://travis-ci.org/BonsaiDen/cobalt-rs) [](https://ci.appveyor.com/project/BonsaiDen/cobalt-rs) [](https://crates.io/crates/cobalt) []() [](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.