This commit is contained in:
Edgar 2022-11-12 17:42:08 +01:00
parent fb9c3cf527
commit 236c51cc74
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387
2 changed files with 8 additions and 2 deletions

View file

@ -1,12 +1,15 @@
# teeint # teeint
A teeworlds variable integer packer/unpacker.
[![Version](https://img.shields.io/crates/v/teeint)](https://crates.io/crates/teeint) [![Version](https://img.shields.io/crates/v/teeint)](https://crates.io/crates/teeint)
[![Downloads](https://img.shields.io/crates/d/teeint)](https://crates.io/crates/teeint) [![Downloads](https://img.shields.io/crates/d/teeint)](https://crates.io/crates/teeint)
[![License](https://img.shields.io/crates/l/teeint)](https://crates.io/crates/teeint) [![License](https://img.shields.io/crates/l/teeint)](https://crates.io/crates/teeint)
![Rust](https://github.com/edg-l/teeint/workflows/Rust/badge.svg) ![Rust](https://github.com/edg-l/teeint/workflows/Rust/badge.svg)
[![Docs](https://docs.rs/teeint/badge.svg)](https://docs.rs/teeint) [![Docs](https://docs.rs/teeint/badge.svg)](https://docs.rs/teeint)
A teeworlds variable integer packer/unpacker.
### Packing ### Packing
```rust ```rust

View file

@ -1,10 +1,13 @@
//! A teeworlds variable integer packer/unpacker. //!
//! [![Version](https://img.shields.io/crates/v/teeint)](https://crates.io/crates/teeint) //! [![Version](https://img.shields.io/crates/v/teeint)](https://crates.io/crates/teeint)
//! [![Downloads](https://img.shields.io/crates/d/teeint)](https://crates.io/crates/teeint) //! [![Downloads](https://img.shields.io/crates/d/teeint)](https://crates.io/crates/teeint)
//! [![License](https://img.shields.io/crates/l/teeint)](https://crates.io/crates/teeint) //! [![License](https://img.shields.io/crates/l/teeint)](https://crates.io/crates/teeint)
//! ![Rust](https://github.com/edg-l/teeint/workflows/Rust/badge.svg) //! ![Rust](https://github.com/edg-l/teeint/workflows/Rust/badge.svg)
//! [![Docs](https://docs.rs/teeint/badge.svg)](https://docs.rs/teeint) //! [![Docs](https://docs.rs/teeint/badge.svg)](https://docs.rs/teeint)
//! //!
//! A teeworlds variable integer packer/unpacker.
//!
//!
//! ## Packing //! ## Packing
//! //!
//! ``` //! ```