network-collections 0.1.9

Collections suitable for use with networking, particularly when a fixed memory usage is required to prevent out-of-memory crashes. Includes two kinds of least recently used caches, a bounded hash map, a magic ring buffer (virtual ring buffer) and an arena allocator.
[dependencies.arrayvec]
features = ["serde-1"]
version = "^0.4"

[dependencies.libc]
version = "^0.2"

[dependencies.likely]
version = "^0.1"

[dependencies.network-time]
version = "^0.1"

[dependencies.serde]
version = "1.0"

[dependencies.serde_derive]
version = "1.0"

[package]
authors = ["Raphael Cohn <raphael.cohn@stormmq.com>"]
categories = ["data-structures", "memory-management", "network-programming"]
description = "Collections suitable for use with networking, particularly when a fixed memory usage is required to prevent out-of-memory crashes. Includes two kinds of least recently used caches, a bounded hash map, a magic ring buffer (virtual ring buffer) and an arena allocator."
exclude = ["*"]
homepage = "https://github.com/lemonrock/network"
include = ["README.md", "LICENSE", "COPYRIGHT", "src/**/*.rs", "Cargo.toml", "rustfmt.toml", "clippy.toml"]
keywords = ["network", "cache", "magic", "ring", "buffer"]
license = "AGPL-3.0"
name = "network-collections"
publish = true
readme = "README.md"
repository = "https://github.com/lemonrock/network.git"
version = "0.1.9"
[target."cfg(any(os = \"android\", os = \"linux\"))".dependencies.dpdk-unix]
version = "^0.1"